It's been awhile since I programmed in C/C++. For the life of me, I cannot remember (or find in Google) how to make this work. I thought there was a shorthand way of writing a repeating string of bytes, like this:
0x00 => 0x00000000
0xFF => 0xFFFFFFFF
0xCD => 0xCDCDCDCD
So for example, if I declare
int x = 0xCD;
printf("%d", x) // prints "3452816845", not "205".
Without using bitshifts (i.e. the preprocessor handles it). Am I going crazy? PS I'm using Microsoft Visual C++ 2010