Hello World不打印。错误

时间:2013-11-08 10:40:01

标签: c

我正在学习C.我已经对这个问题感到沮丧至少20分钟了。我似乎甚至无法打印我的问候世界。问题甚至无法编译。

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

是什么给出了?

3 个答案:

答案 0 :(得分: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.

答案 1 :(得分:1)

无论打开什么都需要关闭:

    return 0;
} // change to closing bracket

另外,#include <stdio.h>以防你没有。

答案 2 :(得分: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;

}