gpt4 book ai didi

C hello world 程序因变量输出而崩溃

转载 作者:行者123 更新时间:2023-11-30 18:30:37 25 4
gpt4 key购买 nike

首先,我有 C# 背景,因此我确实了解中级编程知识。

这是我的第一个 C 程序,当我尝试打印变量“testtt”时,它崩溃了。

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

int main()
{
char testtt = "Hello world";
//scanf("%s", &test);
printf(testtt);
return 0;
}

最佳答案

char只保留一个字符。使用char testtt[] = "Hello world";

关于C hello world 程序因变量输出而崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29688531/

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