#include <stdio.h>
#define MAX 5
void main() {
int array[MAX] = {2, 3, 4, 5};
int N = 4; // number of elements in array
int i = 0; // loop variable
int value = 1; // new data element to be stored in array
// print array before insertion
printf("Printing array before insertion −/n");
for(i = 0; i < N; i++) {
printf("array[%d] = %d /n", i, array[i]);
}
// now shift rest of the elements downwards
for(i = N; i >= 0; i--) {
array[i+1] = array[i];
}
// add new element at first position
array[0] = value;
// increase N to reflect number of elements
N++;
// print to confirm
printf("Printing array after insertion −/n");
for(i = 0; i < N; i++) {
printf("array[%d] = %d/n", i, array[i]);
}
}
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/265384.html