我正在学习 C。我已经对这个问题感到沮丧至少 20 分钟了。我什至无法打印我的 hello world。这个问题甚至没有编译。
int main()
{
printf("hello world");
return 0;
{
是什么赋予了?
我正在学习 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.
任何打开的都需要关闭:
return 0;
} // change to closing bracket
另外,#include <stdio.h>
如果你没有。
确保包含正确的标题并在打印消息后请求输入。如果您不打印,您可能没有足够的时间查看该消息。
#include <stdio.h>
int main()
{
printf("hello world");
getchar(); //if you don't do this the hello world will be printed too fast for you to see
return 0;
}