Compiler Error C2153
Visual Studio 2015
The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.
The latest version of this topic can be found at Compiler Error C2153.
hex constants must have at least one hex digit
Hexadecimal constants 0x, 0X, and \x are not valid. At least one hex digit must follow x or X.
The following sample generates C2153:
// C2153.cpp
int main() {
int a= 0x; // C2153
int b= 0xA; // OK
}
Show: