C 語言標準函數庫分類導覽 - stdio.h gets()

stdio.h 的函數 gets() 從標準輸入裝置接受使用者輸入的字串。



以下程式示範使用 gets() 的結果
#include <stdio.h>

int main(void)
{
    char c1[20];

    printf("請輸入連續的字元....\n");    
    gets(c1);
    printf("剛剛輸入的字串: %s\n", c1);
    
    return 0;
}

/* 《程式語言教學誌》的範例程式
    http://pydoing.blogspot.com/
    檔名:cgets.c
    功能:示範 stdio.h 中函數 gets() 的使用
    作者:張凱慶
    時間:西元2010年6月 */


編譯後執行,結果如下



您可以繼續參考


沒有留言: