Advertisement
Guest User

Untitled

a guest
Nov 15th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. int size = 1028;
  6. int arr[size];
  7. int index;
  8. for(index = 0; index <= size; index++)
  9. {
  10. arr[index] = index +1;
  11. }
  12. printf("%d %d %d", arr[0], arr[1], arr[2]);
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement