gpt4 book ai didi

c - C 中的数组变异

转载 作者:行者123 更新时间:2023-12-01 12:05:56 25 4
gpt4 key购买 nike

如果 C 中的数组大小是固定的,那么这段代码怎么能正常工作呢?这段代码有效,但我的老师说我做错了......

int main()
{
int n,element,i;
printf("Enter the size of Array : ");
scanf("%d",&n);
int a[n];

for(i=0;i<n;i++){
printf("Enter %d no element : ",i+1);
scanf("%d",&a[i]);
}

printf("Enter the new element to be inserted at the End: ");
scanf("%d",&element);

n=n+1;
a[n-1]=element;

for(i=0;i<n;i++){
printf("%d\t",a[i]);
}
}

最佳答案

它不起作用。至少不可靠。这是未定义的行为,因为您正在访问数组外的内存。如果您离阵列不远,它通常会起作用,但这样做非常危险,而且您处理它的方式在任何情况下都是 Not Acceptable 。

如果你需要改变大小,那么使用像这样的动态分配:

int *a = malloc(n*sizeof(*a));
if (!a) { /* Handle error */ }

然后:

n=n+1;
// Using a void pointer, because this pointer should not be used for
// dereferencing
void *tmp = realloc(a, n*sizeof(*a));
if (!tmp) { /* Handle error */ }
a = tmp;

实际上,我更喜欢动态分配,而不是随时使用 VLA:s。他们取消了编译器在现代 C 标准中支持它们的要求这一事实很好地表明使用它们是一个坏主意。由于对它们的支持不再是强制性的,因此将来使用它们可能会破坏您的代码。

关于c - C 中的数组变异,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56929285/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com