*********************************************************************************
//DELETION IN ARRAY
#include<stdio.h>
#include<conio.h>
#include<process.h>
void main()
{
int n,i,pos,arr[50];
clrscr();
printf("\nEnter the number of elements in array");
scanf("%d",&n);
printf("Enter the elements\n");
for(i=0;i<n;i++)
scanf("%d",&arr[i]);
printf("\nEnter the position of element to be deleted");
scanf("%d",&pos);
if(pos>=n+1)
{
printf("Deletion not possible");
exit(0);
}
for(i=pos-1;i<n;i++)
arr[i]=arr[i+1];
printf("\nArray after deletion\n ");
for(i=0;i<n-1;i++)
printf("%d\t",arr[i]);
getch();
}
Click here for Algorithm
*********************************************************************************
//DELETION IN ARRAY
#include<stdio.h>
#include<conio.h>
#include<process.h>
void main()
{
int n,i,pos,arr[50];
clrscr();
printf("\nEnter the number of elements in array");
scanf("%d",&n);
printf("Enter the elements\n");
for(i=0;i<n;i++)
scanf("%d",&arr[i]);
printf("\nEnter the position of element to be deleted");
scanf("%d",&pos);
if(pos>=n+1)
{
printf("Deletion not possible");
exit(0);
}
for(i=pos-1;i<n;i++)
arr[i]=arr[i+1];
printf("\nArray after deletion\n ");
for(i=0;i<n-1;i++)
printf("%d\t",arr[i]);
getch();
}
Click here for Algorithm
*********************************************************************************