Advertisement
Abdullah_A_lAsif_001

array 1

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