Introducing Radical.sh

Forget Code launches a powerful code generator for building API's

Inserting Element in Array in C

Program that to Inserting the elements into the index position of Array
For example:
if we want to add ten elements first consider the variable with size 10 ie. int a[10]
if your want to add an element "56" in the position 5
we have to move the position of index to 4 ie. a[4] and insert the value like a[4]=56
Note:In the above array we cant able to add more than 10 values.

#include <stdio.h>
 
int main()
{
   int array[100], position, c, n, value;
 
   printf("Enter number of elements in array\n");
   scanf("%d", &n);
 
   printf("Enter %d elements\n", n);
 
   for (c = 0; c < n; c++)
      scanf("%d", &array[c]);
 
   printf("Enter the location where you wish to insert an element\n");
   scanf("%d", &position);
 
   printf("Enter the value to insert\n");
   scanf("%d", &value);
 
   for (c = n - 1; c >= position - 1; c--)
      array[c+1] = array[c];
 
   array[position-1] = value;
 
   printf("Resultant array is\n");
 
   for (c = 0; c <= n; c++)
      printf("%d\n", array[c]);
 
   return 0;
}