编程学习网为您整理以下代码实例,主要实现:C语言数据结构更新操作,希望可以帮到各位朋友。
#include <stdio.h>
voID main() {
int LA[] = {1,3,5,7,8};
int k = 3, n = 5, item = 10;
int i, j;
printf("The original array elements are :\n");
for(i = 0; i<n; i++) {
printf("LA[%d] = %d \n", i, LA[i]);
}
LA[k-1] = item;
printf("The array elements after updation :\n");
for(i = 0; i<n; i++) {
printf("LA[%d] = %d \n", i, LA[i]);
}
}
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!