C语言如何删除w数组中下标为k的元素中的值

发布网友 发布时间:2022-04-19 15:49

我来回答

3个回答

热心网友 时间:2023-08-15 07:34

比如w定义大小为10,即w[10],
删除第5个数,即w[4],
则用一个for循环,
for(i=4,i<=9,i++)
w[i]=w[i+1];
然后申明一个小一些的数组,如a[9],
令a=w即可。
a[9]就是你所要的数组了。

热心网友 时间:2023-08-15 07:34

你把他下个元素移动覆盖

热心网友 时间:2023-08-15 07:35

#include <stdio.h>
void main(){
int a[10];
int k;
for(int i=0;i<10;i++)
scanf("%d,\n"&a[i]);
printf("input the index (0-9) of the array that you want to del.%d\n" ,k);
printf("output the value of the array which of the index is k,%d,\n",a[k]);
a[k]=0;
printf("output the value of the array which of the index is k,%d,\n",a[k]);
}
声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。
E-MAIL:11247931@qq.com