问答详情
源自:1-1 初始C语言

本人小白,求指导

输入helloworld后运行结果无结果啊???

提问者:二爷我姓白 2017-04-10 16:08

个回答

  • 杨静茹
    2017-04-10 18:59:01
    已采纳

    VS调试窗口会出现,但只是一闪而过,return 0 之前加上getchar(); (标准输入里读取下一个字符),由于getchar在等待输入,调试窗口就会等待输入,这时就可以看到helloworld的运行结果了。


    也可以在return 0 之前加上system("pause"); 会输出“Press any key to continue”,然后等待用户确认返回。 不过这时头文件要加上的头文件#include <stdlib.h>

  • 公子浅陌
    2017-04-10 16:43:48

    ctrl+f5

    否则就是建错了项目。。。

  • ling95123
    2017-04-10 16:30:15

    #include<stdio.h>
    int main()
    {
    printf("helloworld\n");
    return 0;
    }