?? locale_codeset.c
字號(hào):
/* Prints the system dependent name for the current locale's codeset. */#define _XOPEN_SOURCE 500 /* Needed on AIX 3.2.5 */#include <stdio.h>#include <stdlib.h>#include <locale.h>#include <langinfo.h>int main (){ setlocale(LC_ALL, ""); printf("%s\n", nl_langinfo(CODESET)); exit(0);}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -