gpt4 book ai didi

c - 动态数组是在没有 malloc 的情况下分配的

转载 作者:太空宇宙 更新时间:2023-11-04 08:18:15 25 4
gpt4 key购买 nike

即使未使用 malloc,数组是如何创建的?

#include <stdio.h>
#include <stdlib.h>

int main() {
int n,i,*ptr,sum=0;
printf("Enter number of elements: ");
scanf("%d",&n);
printf("Enter elements of array: ");

for(i=0;i<n;++i)
{
scanf("%d",ptr+i);
sum+=*(ptr+i);
}

printf("Sum=%d",sum);
free(ptr);
return 0;
}

最佳答案

数组不是“创建的”。它被宣布。然后它没有定义或初始化。你用吧。

未定义的行为。

如果你使用更严格的编译器,那么你会得到:

 warning: ‘ptr’ may be used uninitialized in this function [-Wmaybe-uninitialized]

因此它实际上不是动态的

在我看来,这里更大的问题是 free(ptr) 会发生什么:

有可能,但是也是未定义的行为。由于你传递了一个未初始化的指针,指针的值并不清楚。它可能是偶然的 NULL 但不限于。

大图:

访问任何未初始化的变量会导致未定义的行为

编辑:

OP 没有声明一个数组,而是一个整数指针。

关于c - 动态数组是在没有 malloc 的情况下分配的,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34567353/

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