hello4.c

来自「understanding unix/linux programming sou」· C语言 代码 · 共 27 行

C
27
字号
/* hello4.c *	purpose	show how to use erase, time, and draw for animation */#include	<stdio.h>#include	<curses.h>main(){	int	i;	initscr();	   clear();	   for(i=0; i<LINES; i++ ){		move( i, i+i );		if ( i%2 == 1 ) 			standout();		addstr("Hello, world");		if ( i%2 == 1 ) 			standend();		refresh();		sleep(1);		move(i,i+i);			/* move back	*/		addstr("             ");	/* erase line	*/	   }	endwin();}

⌨️ 快捷键说明

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