undeclared identifier
时间: 2024-01-21 07:03:15 浏览: 130
解决error C2065: '_beginthreadex' :undeclared identifier
5星 · 资源好评率100%
An undeclared identifier is a variable or function name that has not been defined or declared before it is used in a program. When a program tries to use an undeclared identifier, it will result in a compile-time error because the compiler cannot find the definition of the identifier. To fix this error, the identifier must be declared or defined before it is used in the program.
阅读全文