Advertisement
dipf

Untitled

Nov 24th, 2017
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. int i;
  2. int howMany = 10;
  3. int goals[howMany];
  4.  
  5. for(i=0; i<howMany; i++){
  6. goals[i] = ( rand()%25 )+1;
  7. }
  8.  
  9. printf("Orginal List \n");
  10. for(i=0; i<howMany; i++){
  11. printf("%d \n", goals[i]);
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement