gpt4 book ai didi

c - 为什么当我尝试 perror 函数时我的程序崩溃了?

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

我正在用 C 测试 perror 函数,并根据 this page它在传递空指针时打印一条默认消息:

int main(void)
{
int *p;
perror(p); //crashes
}

最佳答案

原因 int* p 包含随机/垃圾值。

它不是一个NULL指针。您需要使用 p = NULL; 显式初始化它。

使用未初始化的变量是未定义的行为。

main() 也需要return 0;

关于c - 为什么当我尝试 perror 函数时我的程序崩溃了?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9316335/

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