1 回答

TA貢獻(xiàn)1802條經(jīng)驗(yàn) 獲得超4個(gè)贊
可以使用系統(tǒng)函數(shù)system("pause");進(jìn)行暫停。
1、system函數(shù):原型:int system(const char * command);功能:執(zhí)行 dos(windows系統(tǒng)) 或 shell(Linux/Unix系統(tǒng)) 命令,參數(shù)字符串command為命令名;說明:在windows系統(tǒng)中,system函數(shù)直接在控制臺(tái)調(diào)用一個(gè)command命令。在Linux/Unix系統(tǒng)中,system函數(shù)會(huì)調(diào)用fork函數(shù)產(chǎn)生子進(jìn)程,由子進(jìn)程來執(zhí)行command命令,命令執(zhí)行完后隨即返回原調(diào)用的進(jìn)程;頭文件:stdlib.h;返回值:命令執(zhí)行成功返回0,執(zhí)行失敗返回-1。2、例程:
123456#include<stdio.h>#include<stdlib.h>int main(){system("pause");//暫停return 0;}
- 1 回答
- 0 關(guān)注
- 1767 瀏覽
添加回答
舉報(bào)