c++字符数组怎么输入
时间: 2024-05-01 08:21:40 浏览: 78
可以使用scanf函数或者fgets函数输入字符数组。例如:
使用scanf函数:
```c
char str[100];
scanf("%s", str);
```
使用fgets函数:
```c
char str[100];
fgets(str, 100, stdin);
```
需要注意的是,fgets函数会读入换行符,所以需要去除换行符。可以使用下面的代码:
```c
fgets(str, 100, stdin);
str[strcspn(str, "\n")] = '\0';
```
阅读全文