类似的函数暂停()?

时间:2014-01-29 23:22:29

标签: c linux

在Linux中是否还有其他类似的函数pause?(

例如:在此代码中使用

int main(int argc, char*argv[]){  

int delay = 5;  
alarm(delay);  
pause();  
return0;  
}  

1 个答案:

答案 0 :(得分:0)

getchar怎么样?

puts("Press Enter to continue...");
getchar();

用户必须按Enter键(而不是任何键),但这与平台无关。