gpt4 book ai didi

c - 为什么需要分配内存?

转载 作者:太空宇宙 更新时间:2023-11-04 06:03:41 26 4
gpt4 key购买 nike

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

void main()
{
char *arr;
arr=(char *)malloc(sizeof (char)*4);
scanf("%s",arr);
printf("%s",arr);
}

在上面的程序中,我真的需要分配arr吗?即使不使用 malloc,它也会给我结果。我的第二个疑问是'我期待第 9 行出现错误,因为我认为它一定是 printf("%s",*arr);什么的。

最佳答案

do I really need to allocate the arr?

是的,否则您将取消引用未初始化的指针(即写入随机内存块),这是未定义的行为

关于c - 为什么需要分配内存?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14728307/

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