C Program to Insert an Element in an Array
Here is the simple C program to insert an element in a one dimensional array. The array should be in ascending order. #include<stdio.h> int main() { int a[20],n,x,i,pos=0; printf(“Enter size of array:”); scanf(“%d”,&n); printf(“Enter the array in ascending order:\n”); for(i=0;i<n;++i) scanf(“%d”,&a[i]); printf(“\nEnter element to insert:”); scanf(“%d”,&x); for(i=0;i<n;++i) if(a[i]<=x&&x<a[i+1]) { pos=i+1; break; } for(i=n+1;i>pos;–i) a[i]=a[i-1]; a[pos]=x; …
