C Program To Delete An Element From An Array - Programming Simplified
C Program To Delete An Element From An Array - Programming Simplified
http://www.programmingsimplified.com/c/source-code/c-program-dele...
c programming code
#include <stdio.h> 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 is\n"); for( c = 0 ; c < n - 1 ; c++ ) printf("%d\n", array[c]); } return 0; }
Array codes
Insert element in array Reverse array Linear search
C programming: C programming examples
1 of 1
12/24/2012 5:27 PM