hex constants must have at least one hex digit
Hexadecimal constants 0x, 0X, and \x are illegal. At least one hex digit must follow x or X. The following sample generates C2153:
void main() { int a= 0x; // C2153 int b= 0xA; // ok }