C 速查手冊
11.6.2 gets()
stdio.h 的函數 (function) gets() 從標準輸入裝置接受使用者輸入的字串 (string) 。
以下程式示範使用 gets() 的結果
#include <stdio.h>
int main(void)
{
char c1[20];
printf("請輸入連續的字元....\n");
gets(c1);
printf("剛剛輸入的字串: %s\n", c1);
return 0;
}
/* 《程式語言教學誌》的範例程式
http://kaiching.org/
檔名:cgets.c
功能:示範 stdio.h 中函數 gets() 的使用
作者:張凱慶 */
編譯後執行,結果如下
$ gcc cgets.c |
$ a.out |
請輸入連續的字元.... |
▊ |
此時程式等待使用者輸入,繼續輸入 There is no spoon. ,再按 Enter ,如下
There is no spoon. |
剛剛輸入的字串: There is no spoon. |
$ |