Guest User

Untitled

a guest
Jul 22nd, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <conio.h>
  3.  
  4.  
  5.  
  6. int main(void)
  7. {
  8. int i=0;
  9.  
  10. srand(time(NULL);
  11.  
  12. while (i<15){
  13. printf("%d",rand()); //keep getting a error here
  14. i++;
  15. }
  16. getch();
  17. return 0;
  18. }
Add Comment
Please, Sign In to add comment