C program - How to insert number into array



#include <stdio.h>
#include <conio.h>
void main()
{
 int   x[10];
 int   i, j, n, m, temp, key, pos;
 clrscr();
 printf("Enter how many elements\n");
 scanf("%d", &n);
 printf("Enter the elements\n");
 for(i=0; i<n; i++)
 {
  scanf("%d", &x[i]);
 }
 printf("Input array elements are\n");
 for(i=0; i<n; i++)
 {
  printf("%d\n", x[i]);
 }
 for(i=0; i< n; i++)
 {
  for(j=i+1; j<n; j++)
  {
   if (x[i] > x[j])
   {
    temp = x[i];
    x[i] = x[j];
    x[j] = temp;
   }
  }
 }
 printf("Sorted list is\n");
 for(i=0; i<n; i++)
 {
  printf("%d\n", x[i]);
 }
 printf("Enter the element to be inserted\n");
 scanf("%d",&key);
 for(i=0; i<n; i++)
 {
  if ( key < x[i] )
  {
   pos = i;
   break;
  }
 }
 m = n - pos + 1 ;
 for(i=0; i<= m ; i++)
 {
  x[n-i+2] = x[n-i+1] ;
 }
 x[pos] = key;
 printf("Final list is\n");
 for(i=0; i<n+1; i++)
 {
  printf("%d\n", x[i]);
 }


Output:

C progams, c programming, array



06 Aug 2015

Post a Comment

:) :)) ;(( :-) =)) ;( ;-( :d :-d @-) :p :o :>) (o) [-( :-? (p) :-s (m) 8-) :-t :-b b-( :-# =p~ $-) (b) (f) x-) (k) (h) (c) cheer
Click to see the code!
To insert emoticon you must added at least one space before the code.

 
Top