C Program to Delete an Array Element

Advertisements

Prev Tutorial Next Tutorial

Delete an Array Element Programs in C

Delete an Array Element at Specific Position in C

#include<stdio.h>
#include<conio.h>

void main()
{
 int i,a[5],no,pos;
 clrscr();
 printf("Enter data in array: ");
 for(i=0;i<5;i++)
 {
 scanf("%d",&a[i]);
 }
 printf("\n\nStored Data in array: ");
 for(i=0;i<5;i++)
 {
 printf("  %d",a[i]);
 }
 printf("\n\nEnter poss. of number: ");
 scanf("%d",&pos);
 if(pos>5)
 {
 printf("\n\nThis value is out of range ");
 }
 else
 {
 --pos;
 for(i=pos;i<=4;i++)
 {
 a[i]=a[i+1];
 }
 printf("\n\nNew data in array: ");
 for(i=0;i<4;i++)
 {
 printf("  %d",a[i]);
 }
 }
 getch();
}

Output

delete element from array
Prev Tutorial Next Tutorial

Google Advertisment

Buy This Ad Space @$20 per Month, Ad Size 600X200 Contact on: hitesh.xc@gmail.com or 9999595223

Magenet is best Adsense Alternative here we earn $2 for single link, Here we get links ads. Magenet

For Projects 9999595223

Google Advertisements


Buy Websites 9999595223

Buy College Projects with Documentation Contact on whatsapp 9999595223. Contact on: hitesh.xc@gmail.com or 9999595223 Try this Keyword C++ Programs

Advertisements