在C語言中,可以使用scanf
函數或gets
函數來輸入字符串。
使用scanf
函數:
#include <stdio.h>
int main() {
char str[100];
printf("請輸入字符串:");
scanf("%s", str);
printf("您輸入的字符串是:%s\n", str);
return 0;
}
使用gets
函數:
#include <stdio.h>
int main() {
char str[100];
printf("請輸入字符串:");
gets(str);
printf("您輸入的字符串是:%s\n", str);
return 0;
}
注意:使用gets
函數時要注意字符串的長度,避免溢出。推薦使用fgets
函數來輸入字符串,可以指定字符串的最大長度,避免溢出問題。