码迷,mamicode.com
首页 > 其他好文 > 详细

宽字符

时间:2015-03-15 13:50:54      阅读:99      评论:0      收藏:0      [点我收藏+]

标签:

#include <stdio.h>
#include <stdlib.h>
#include <locale.h>
#include <string.h>
int main()
{
    printf("Locale is %s\n",setlocale(LC_ALL,NULL));
    setlocale(LC_ALL,"");
    printf("Locale is %s\n",setlocale(LC_ALL,NULL));

    char c = A;
    printf("%c\n",c);

    wchar_t c2 = L;
    wprintf(L"%c\n",c2);

    char s[] = "hello";
    wchar_t s2[] = L"中华人民共和国";
    printf("%s\n",s);
    wprintf(L"%s\n",s2);

    printf("%d\n",strlen(s));
    printf("%d\n",wcslen(s2));

    system("pause");
    return 0;
}

 

宽字符

标签:

原文地址:http://www.cnblogs.com/gongyan/p/4339569.html

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