-7

我正在学习 C。我已经对这个问题感到沮丧至少 20 分钟了。我什至无法打印我的 hello world。这个问题甚至没有编译。

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

是什么赋予了?

4

3 回答 3

3
#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.
于 2013-11-08T10:40:42.990 回答
1

任何打开的都需要关闭:

    return 0;
} // change to closing bracket

另外,#include <stdio.h>如果你没有。

于 2013-11-08T10:40:51.007 回答
0

确保包含正确的标题并在打印消息后请求输入。如果您不打印,您可能没有足够的时间查看该消息。

#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;

}
于 2013-11-08T10:47:17.383 回答