码迷,mamicode.com
首页 > 编程语言 > 详细

C语言输出单个汉字字符

时间:2014-07-01 21:25:57      阅读:336      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   使用   for   io   

 1 #include "stdio.h"
 2 #include "windows.h"
 3 
 4 int main()
 5 {
 6     char sText[20] = { "多字节字符串!OK!" };
 7     DWORD dwNum = MultiByteToWideChar(CP_ACP, 0, sText, -1, NULL, 0);
 8     printf("dwNum = %d", dwNum);
 9     for (int i = 0; i < 20; i=i+2)
10     {
11         printf("%c%c", sText[i],sText[i+1]);
12         printf("%d", i);
13     }
14     system("pause");
15     return 0;
16 }

char是单字节类型,占8个二进制位,中文字符占两个字节,输出字符串中的单个汉字字符时,不可以直接使用printf("%c",sText[i])语句,这样只是输出汉字字符的前半段,显示在命令行的结果为一个问号。

C语言输出单个汉字字符,布布扣,bubuko.com

C语言输出单个汉字字符

标签:style   blog   color   使用   for   io   

原文地址:http://www.cnblogs.com/micky1989/p/3816851.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!