您所在的位置:
首页 > linux控制台显示中文 > 信息评论 >
linux控制台显示中文
#include <stdio.h> #include <wchar.h> #include <locale.h> int main() { #ifdef _WIN32 setlocale(LC_ALL, "chs"); #else setlocale(LC_ALL, "zh_CN.UTF-8"); #endif wchar_t KZg[] =
网友评论