Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include<stdio.h>
- void main()
- {
- srand( time(NULL) );
- int i, ar[100];
- i=rand();
- for(i=0; i<10; i++)
- {
- ar[i]=rand()%100+100;
- printf("%d\n", ar[i]);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement