工程->右键属性->配置属性->常规,右边“字符集”一栏选择使用的字符集,比如选择 “使用Unicode字符集”,则在工程中,
#ifdef UNICODE
printf("unicode\n");
#else
printf("other\n");
#endif
上面的代码将输出unicode
工程->右键属性->配置属性->常规,右边“字符集”一栏选择使用的字符集,比如选择 “使用Unicode字符集”,则在工程中,
#ifdef UNICODE
printf("unicode\n");
#else
printf("other\n");
#endif
上面的代码将输出unicode