vc中多字节字符串、宽字节字符串
多字节字符串函数 strxxx()
宽字节字符串函数 wcsxxx()
即可操作多字节字符串,又可操作宽字节字符串 _tcsxxx(),可根据实际需要指定或修改
#include <string.h>
#include <tchar.h>
char *s1 = "hello world";
wchar_t *s2 = L"hello world";
TCHAR *s3 = _T("hello world");
printf("s1:%s\n", s1);
printf("s2:%s\n", s2);
_tprintf(_T("s3:%s\n"), s3);
char buf1[128]={0};
wchar_t buf2[128]={0};
TCHAR buf3[128]={0};