2013年8月27日 星期二

[Linux C]-Linux 模擬『windows C++的system("pasue");』功能

[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);
}


1 則留言:

  1. 找到另一段更好的CODE 跟大家分享
    #include <stdio.h>

    void main(void)
    {
    int c;

    printf("按任意键退出\n");
    system("stty raw -echo");
    c = getchar();
    system("stty cooked echo");
    }

    回覆刪除