WYSIWYG Strings


	"y\\B\\w"	// regular
	r"y\B\w"	// wysiwyg

	file ("\\dm\\include\\stdio.h");
	file (r"\dm\include\stdio.h");


X Strings


	00 0A E3 DC

	0x00, 0x0A, 0xE3, 0xDC,

	"\x00\x0A\xE3\xDC"

	x"00 0A E3 DC"