在C語言中,可以使用scanf
函數來從鍵盤獲取字符串。具體用法如下:
#include <stdio.h>
int main() {
char str[100]; // 定義一個字符數組來存儲字符串
printf("請輸入字符串:");
scanf("%s", str);
printf("您輸入的字符串是:%s\n", str);
return 0;
}
上述代碼中,使用scanf
函數來獲取字符串,使用%s
格式控制符來指定輸入的字符串類型,將獲取到的字符串存儲到字符數組str
中。需要注意的是,scanf
函數在遇到空格或者換行符時會停止讀取,因此只能獲取到第一個單詞。如果需要獲取多個單詞的字符串,可以使用fgets
函數。