0
#include<stdio.h>
#include<conio.h>
int main()
{
printf("Hello world");
getch();
return 0;
}
我正在寫一個簡單的Hello World應用程序,使用C語言,但是當我運行該程序時,輸出屏幕會突然閃爍並消失?輸出屏幕在VS2013中突然閃爍並消失?
#include<stdio.h>
#include<conio.h>
int main()
{
printf("Hello world");
getch();
return 0;
}
我正在寫一個簡單的Hello World應用程序,使用C語言,但是當我運行該程序時,輸出屏幕會突然閃爍並消失?輸出屏幕在VS2013中突然閃爍並消失?
getch()(儘管應該使用_getch())將讀取標準輸入。但編譯器可能會優化函數,而且它永遠不會被調用結束程序。
編輯: 根據msdn,棄用函數getch()並使用_getch()。
_getch工作:) – TheSpy