#include<stdio.h>
#include<conio.h>
int main()
{
printf("Hello world");
getch();
return 0;
}
我正在使用C语言编写一个简单的hello world应用程序,但是当我运行该程序时,输出屏幕闪烁并突然消失?
最佳答案
getch()(即使应使用_getch())也会读取标准输入。但是编译器可能会优化函数,而永远不会被称为结束程序。
编辑:
根据msdn,不建议使用getch()函数,而应使用_getch()。
关于c - 输出屏幕在VS2013中闪烁并突然消失?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21480995/