我想问一下ccleaner怎么设置中文?

我想问一下ccleaner怎么设置中文?,第1张

ccleaner设置成中文的方法是:

1、首先打开安装好的CCleaner软件;

2、选中界面左侧选项的“options”选项;

3、选择第一个“setting”,出现如下界面框;

4、选择左侧上面第一个语言选项框,在下拉列表中选择“Chinese(Simplified)”,即“中文简体”;

5、这样界面就切换为中文了。

1、中文字符串可以使用printf()、puts()等函数直接输出。

#include <stdio.h>

#include <locale.h>

int main()

{

const char str[] = "这里全是中文"

printf("\n输出字符数:%d\n", printf(str))

puts(str)

return 0

}2、单个中文字符,需要进行本地化设置,需要使用宽字符版的printf()即wprintf输出。

#include <stdio.h>

#include <locale.h>

int main()

{

setlocale(LC_ALL, "chs")

wchar_t wc = L'中'

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

return 0

}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/7853803.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-10
下一篇 2023-04-10

发表评论

登录后才能评论

评论列表(0条)

保存