How to delete an element from an array



#include <stdio.h>
void main()
{
 int   vectx[10];
 int   i, n, pos, element, found = 0;
 printf("Enter how many elements\n");
 scanf("%d", &n);
 printf("Enter the elements\n");
 for(i=0; i<n; i++)
 {
  scanf("%d", &vectx[i]);
 }
 printf("Input array elements are\n");
 for(i=0; i<n; i++)
 {
  printf("%d\n", vectx[i]);
 }
 printf("Enter the element to be deleted\n");
 scanf("%d",&element);
 for(i=0; i<n; i++)
 {
  if ( vectx[i] == element)
  {
   found = 1;
   pos = i;
   break;
  }
 }
 if (found == 1)
 {
  for(i=pos; i< n-1; i++)
  {
   vectx[i] = vectx[i+1];
  }
  printf("The resultant vector is \n");
  for(i=0; i<n-1; i++)
  {
   printf("%d\n",vectx[i]);
  }
 }
 else
  printf("Element %d is not found in the vector\n", element);
}


Output:

c programs, c programming, array deletion,

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