阅读量:0
在C语言中,可以使用scanf()
函数来输入一个字符串。
示例代码如下:
#include <stdio.h> int main() { char str[100]; // 声明一个字符数组来存储输入的字符串 printf("请输入一个字符串:"); scanf("%s", str); // 使用%s格式化字符来输入字符串 printf("您输入的字符串是:%s\n", str); return 0; }
以上代码中,我们声明了一个字符数组str
,用于存储输入的字符串。然后使用scanf("%s", str)
来输入字符串,当用户输入字符串后,str
数组中将保存该字符串。最后使用printf()
函数来输出输入的字符串。