gets() - C語言庫函式


C語言庫函式 char *gets(char *str) 從標準輸入中讀取一行,並將其儲存到由str指向的字串。它時停止讀取換行符或檔案結束時達成,以先到為準。

宣告

以下是gets() 函式的宣告。

char *gets(char *str)

引數

  • str -- 這是儲存所在的C字串的字元陣列的指標。

返回值

這個函式返回 str 則為 成功,NULL錯誤或檔案結束時發生,而沒有字元已讀。

例子

下面的例子顯示的使用 gets() 函式。

#include <stdio.h>

int main()
{
   char str[50];

   printf("Enter a string : ");
   gets(str);

   printf("You entered: %s", str);

   return(0);
}

讓我們編譯和執行上面的程式,這將產生以下結果:

Enter a string : tw511.com
You entered: tw511.com