19/03/2016

C Program To Delete Element From Array At Desired Or Specific Position

#include<stdio.h>
int main()
{
//Ghanendra Yadav
  int i,arr[50],pos,len;

  printf("Enter no. of elements for the array:\n");
  scanf("%d",&len);

  printf("Enter %d elements for the array:\n",len);
  for(i=0;i<len;i++)
            scanf("%d",&arr[i]);

  printf("Enter position of the element to delete:\n");
  scanf("%d",&pos);

  i = pos-1;

  while(i<len - 1)
  {
            arr[i]=arr[i+1];
            i++;
  }
  len--;
  printf("Array after deleting element\n");

  for(i=0;i<len;i++)
            printf(" %d",arr[i]);

  return 0;
}

Output:-


Previous Post
Next Post

post written by:

Hi, I’m Ghanendra Yadav, SEO Expert, Professional Blogger, Programmer, and UI Developer. Get a Solution of More Than 500+ Programming Problems, and Practice All Programs in C, C++, and Java Languages. Get a Competitive Website Solution also Ie. Hackerrank Solutions and Geeksforgeeks Solutions. If You Are Interested to Learn a C Programming Language and You Don't Have Experience in Any Programming, You Should Start with a C Programming Language, Read: List of Format Specifiers in C.
Follow Me

0 Comments: