摘要: #include "stdio.h" #include "windows.h" int main() { char sText[20] = { "多字节字符串!OK!" }; DWORD dwNum = MultiByteToWideChar(CP_ACP, 0, sText, -1, NULL, 0); printf("dwNum = %d", dwNum); for (int i = 0; i 阅读全文
posted @ 2019-09-09 20:40 NULL_ROOT 阅读(360) 评论(0) 推荐(0) 编辑