/* Insert New value in array (unsorted list ) */
#include<stdio.h>
#include<conio.h>
void main()
{
int a[100],i,n,pos,x;
clrscr();
printf(“enter how many value in array\n”);
scanf(“%d”,&n);
printf(“Enter %d value \n”,n);
for(i=0;i<n;i++)
scanf(“%d”,&a[i]);
printf(“Which value to be insert ->”);
scanf(“%d”,&x);
printf(“Which Position ->”);
scanf(“%d”,&pos);
/* insert logic */
/* Shift all data at right side of the array */
for(i=n;i>=pos;i–)
a[i]= a[i-1];
/* insert value at position */
a[pos]=x;
printf(“Your Exist List is :\n “);
for(i=0;i<n;i++)
printf(“%5d”,a[i]);
printf(“\n\nAfter Insert the list is :\n “);
for(i=0;i<=n;i++)
printf(“%5d”,a[i]);
getch();
}
Latest posts by Mohit Arora (see all)
- MongoDB Operators Tutorial – What are Different Operators Available? - October 5, 2019
- MongoDB Projection Tutorial : Return Specific Fields From Query - March 9, 2019
- MongoDB Index Tutorial – Create Index & MongoDB Index Types - July 6, 2018