Advertisement
yigitusta9

LG13_3a

Nov 25th, 2015
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.22 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main ()
  4. {
  5.     int arr[5] = {7, 73, 242, 51, 121}, index;
  6.  
  7.     printf("The array contents are: ");
  8.  
  9.     for (index = 0; index < 5; index++)
  10.         printf("%d ", arr[index]);
  11.  
  12.     printf("\n");
  13.     return 0;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement