📄 hello2.c
字号:
/* hello2.c * purpose show how to use curses functions with a loop * outline initialize, draw stuff, wrap up */#include <stdio.h>#include <curses.h>main(){ int i; initscr(); /* turn on curses */ clear(); /* draw some stuff */ for(i=0; i<LINES; i++ ){ /* in a loop */ move( i, i+i ); if ( i%2 == 1 ) standout(); addstr("Hello, world"); if ( i%2 == 1 ) standend(); } refresh(); /* update the screen */ getch(); /* wait for user input */ endwin(); /* reset the tty etc */}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -