[Linux C]-Linux 模擬『windows C++的system("pasue");』功能
本篇要分享Linux C實做『windows C++的system("pasue");』功能範例,有興趣的同好,歡迎來一下哈哈 ^ ^。
#include <stdio.h>void main(void){ printf("Press Enter key to continue..."); fgetc(stdin);}
找到另一段更好的CODE 跟大家分享#include <stdio.h>void main(void){ int c; printf("按任意键退出\n"); system("stty raw -echo"); c = getchar(); system("stty cooked echo");}
找到另一段更好的CODE 跟大家分享
回覆刪除#include <stdio.h>
void main(void)
{
int c;
printf("按任意键退出\n");
system("stty raw -echo");
c = getchar();
system("stty cooked echo");
}