#include /// /// 2-byte Character. Unless otherwise specified all strings are stored in the /// UTF-16 encoding format as defined by Unicode 2.1 and ISO/IEC 10646 standards. /// typedef unsigned short CHAR16; CHAR16 gChar = L'X'; CHAR16 gChar2 = L'\x23f3'; CHAR16 gStr[] = L"1234567890\x23f3"; CHAR16 *gStrPtr = gStr; char Char = 'X'; char Str[] = "1234567890"; char *StrPtr = Str; int main(int argc, char **argv) { printf ("hello world!\n"); return 0; }