I\'m having a dispute with a colleague of mine. She says that the following:
char* a = \"\\x000aaxz\";
will/can be seen by the compiler as
Quote from MSDN on C++ character constants:
Octal escape sequences, specified in the form \ooo, consist of a backslash and one, two, or three octal characters. Hexadecimal escape sequences, specified in the form \xhhh, consist of the characters \x followed by a sequence of hexadecimal digits. Unlike octal escape constants, there is no limit on the number of hexadecimal digits in an escape sequence.
from http://msdn.microsoft.com/en-us/library/6aw8xdf2.aspx