c语言将字符串输入到数组
时间: 2023-11-24 18:52:19 浏览: 281
c语言数组与字符串PPT课件.pptx
在C语言中,我们可以使用scanf函数将字符串输入到数组中。具体实现方法如下:
```c
#include <stdio.h>
int main() {
char str[100];
printf("请输入字符串:");
scanf("%s", str);
printf("您输入的字符串是:%s\n", str);
return 0;
}
```
在上述代码中,我们定义了一个长度为100的字符数组`str`,然后使用`scanf`函数将用户输入的字符串存储到该数组中。需要注意的是,在使用`scanf`函数输入字符串时,我们不需要使用`&`符号,因为数组名本身就代表了数组的首地址。
阅读全文