1 Star 0 Fork 0

chyyuu/my3

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
m.c 287 Bytes
一键复制 编辑 原始数据 按行查看 历史
chyyuu 提交于 2025-05-07 23:09 +08:00 . test ncurses
#include <locale.h>
#include <ncurses.h>
int main() {
// 设置本地化信息以支持 UTF - 8
setlocale(LC_ALL, "");
// 初始化 ncurses
initscr();
// 显示 UTF - 8 字符
printw("你好,世界!");
refresh();
getch();
endwin();
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/chyyuu/my3.git
git@gitee.com:chyyuu/my3.git
chyyuu
my3
my3
main

搜索帮助