Advertisement
semsem_elazazy

practical 5

Dec 28th, 2021
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.17 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5.  int arr[10]={2,4,6,8,10,12,14,16,18,20};
  6.  int i;
  7.  for(i=0;i<10;i++)
  8.  {
  9.      printf("arr[%d] = %d \n",i,arr[i]);
  10.  }
  11.     return 0;
  12. }
  13.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement