1.

write a c program to delete an element at desired position from an array and replace it with a new element in the same position​

Answer»

Answer:

Remove element from array C program

#INCLUDE

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 element\n");

scanf("%d", &position);

if (position >= n+1)

printf("Deletion not possible.\n");

else

{

for (c = position - 1; c < n - 1; c++)

array[c] = array[c+1];

printf("RESULTANT array:\n");

for (c = 0; c < n - 1; c++)

printf("%d\n", array[c]);

}

return 0;

}

Explanation:

plz mark as brillant



Discussion

No Comment Found