⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 hello1.c

📁 understanding unix/linux programming source code(bruce molay)
💻 C
字号:
/* hello1.c *	purpose	 show the minimal calls needed to use curses *	outline  initialize, draw stuff, wait for input, quit */#include	<stdio.h>#include	<curses.h>main(){	initscr() ;		/* turn on curses	*/				/* send requests	*/	clear();			/* clear screen	*/	move(10,20);			/* row10,col20	*/	addstr("Hello, world");		/* add a string	*/	move(LINES-1,0);		/* move to LL	*/	refresh();		/* update the screen	*/	getch();		/* wait for user input	*/	endwin();		/* turn off curses	*/}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -