//Delete an element from an array from a particular position
#include <stdio.h>
int main()
{
int array[100], position, c, n;
printf("Enter number of elements in array\n");
scanf("%d", &n);
printf("Enter %d elements\n", n);
for (c = 0; c < n; c++)
{
scanf("%d", &array[c]);
}
printf("Enter the location where you wish to delete from an array\n");
scanf("%d", &position);
for (c = position-1; c < n-1; c++)
{
array[c] = array[c+1];
}
printf("Resultant array is : ");
for (c = 0; c < n-1; c++)
{
printf("%d ", array[c]);
}
}
To embed this project on your website, copy the following code and paste it into your website's HTML: