gpt4 book ai didi

c - 将非 ASCII 字符分配给宽字符并使用 printf 打印

转载 作者:行者123 更新时间:2023-12-02 00:11:15 25 4
gpt4 key购买 nike

如何将非 ASCII 字符分配给宽字符并将其打印到控制台?此代码不起作用:

#include <stdio.h>
int main(void)
{
wchar_t wc = L'ć';
printf("%lc\n", wc);
printf("%ld\n", wc);
return 0;
}

输出:

263
Press [Enter] to close the terminal ...

我在 Windows 7 上使用 MinGW GCC。

最佳答案

你应该使用 wprintf打印宽字符串:

wprintf(L"%c\n", wc);

关于c - 将非 ASCII 字符分配给宽字符并使用 printf 打印,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15206490/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com