在C語言中,可以使用以下方法讓運行窗口不關閉:
getchar()
函數等待用戶輸入一個字符,使程序暫停執行,直到用戶按下Enter鍵。例如:#include <stdio.h>
int main() {
printf("Press Enter to exit...");
getchar();
return 0;
}
system("pause")
函數來暫停程序執行,直到用戶按下任意鍵。例如:#include <stdio.h>
#include <stdlib.h>
int main() {
printf("Press any key to exit...");
system("pause");
return 0;
}
請注意,第二種方法需要包含stdlib.h
頭文件。
這些方法使程序暫停執行,直到用戶輸入,從而保持運行窗口打開。