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