[Error] C:\Users\yhl\Documents\C-Free\Temp\未命名1.cpp:7: error: invalid conversion from `short unsigned int*' to `short unsigned int'
时间: 2023-09-28 14:04:44 浏览: 143
未命名1.cpp
This error message indicates that there is an invalid conversion from a pointer to a short unsigned integer (short unsigned int*) to a short unsigned integer (short unsigned int).
It is likely that there is a type mismatch in the code, where a variable or expression of type short unsigned int* is being used in a context where a short unsigned int is expected.
To resolve this error, ensure that the correct types are being used in the appropriate contexts.
阅读全文