在Linux中是否还有其他类似的函数pause?(
)例如:在此代码中使用
int main(int argc, char*argv[]){
int delay = 5;
alarm(delay);
pause();
return0;
}
答案 0 :(得分:0)
getchar
怎么样?
puts("Press Enter to continue...");
getchar();
用户必须按Enter键(而不是任何键),但这与平台无关。