522 16 E:\chen\作业6.cpp [Error] invalid conversion from 'char*' to 'char' [-fpermissive]
时间: 2024-01-22 12:17:41 浏览: 86
Caused by: android.system.ErrnoException: write failed: ENOSPC (
这个错误是因为你把一个字符串赋值给了一个字符变量而不是字符数组。字符变量只能存储一个字符,而不是整个字符串。
比如,下面的代码会报这个错误:
```cpp
char c = "hello";
```
你需要把字符变量改为字符数组,例如:
```cpp
char str[] = "hello";
```
或者将字符串中的某个字符赋值给字符变量,例如:
```cpp
char c = 'h';
```
阅读全文