gpt4 book ai didi

c - Hello World 不打印。错误

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

我正在学习 C。我已经为这个问题沮丧了至少 20 分钟。我似乎甚至无法打印我的hello world。该问题甚至无法编译。

int main()
{
printf("hello world");
return 0;
{

什么给出了?

最佳答案

#include <stdio.h> // include this library header file to use printf()

int main()
{
printf(“Hello world.\n”);
return 0;
} // Replace “{“ with : “}”
// You were not closing the main body correctly.

关于c - Hello World 不打印。错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19856988/

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