fork download
  1. #include<stdio.h>
  2.  
  3. int main()
  4. {
  5. int a[10];
  6. int i;
  7. int element;
  8. //printf("enter array elements:");
  9. for(i=0;i<5;i++)
  10. scanf("%d",&a[i]);
  11. //printf("enter the element you want to insert:");
  12. scanf("%d",&element);
  13. a[5]=element;
  14. for(i=0;i<6;i++)
  15. printf(" %d",a[i]);
  16. return 0;
  17. }
Success #stdin #stdout 0s 2252KB
stdin
10
20
30
40
50

65
stdout
 10 20 30 40 50 65