在C語言中,可以使用scanf
函數來實現字符串的輸入輸出。以下是一個簡單的示例:
#include <stdio.h>
int main() {
char str[100];
// 輸入字符串
printf("請輸入字符串:");
scanf("%s", str);
// 輸出字符串
printf("你輸入的字符串是:%s\n", str);
return 0;
}
在上面的示例中,scanf
函數使用%s
格式化指示符來讀取一個字符串,并將其存儲在str
數組中。然后,使用printf
函數將輸入的字符串輸出到屏幕上。