Delete Element From Array

Introduction
  • In this blog, I am going to explain about the delete elements from an array. 
Software Requirements
  • Turbo C++ OR C.
Programming
  1. #include < stdio.h >  
  2. int main()  
  3. {  
  4.     int array[100], position, c, n;  
  5.     printf("Enter number of elements in array\n");  
  6.     scanf("%d", & n);  
  7.     printf("Enter %d elements\n", n);  
  8.     for (c = 0; c < n; c++) scanf("%d", & array[c]);  
  9.     printf("Enter the location where you wish to delete element\n");  
  10.     scanf("%d", & position);  
  11.     if (position >= n + 1) printf("Deletion not possible.\n");  
  12.     else  
  13.     {  
  14.         for (c = position - 1; c < n - 1; c++) array[c] = array[c + 1];  
  15.         printf("Resultant array is\n");  
  16.         for (c = 0; c < n - 1; c++) printf("%d\n", array[c]);  
  17.     }  
  18.     return 0;  
  19.  
Explanation
  • From the programming, it is understood, that deleting an element of an array does not affect the array size.

    programming

    programming
Output

Output
 
Conclusion
  • Thus, the program of deleting an array is executed and printed successfully.