Advertisement
babusha

Untitled

May 15th, 2011
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.13 KB | None | 0 0
  1. #include <stdlib.h>
  2.  
  3. int main()
  4. {
  5.     int array[100];
  6.     for (int i = 0; i <= 100; i++)
  7.     {
  8.         array[i] = random(100);
  9.     }
  10.     return 0;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement