remove cursor
This commit is contained in:
+8
-6
@@ -2,11 +2,13 @@
|
||||
|
||||
int main()
|
||||
{
|
||||
initscr();
|
||||
printw("Hello World !!!");
|
||||
refresh();
|
||||
getch();
|
||||
endwin();
|
||||
initscr();
|
||||
noecho();
|
||||
curs_set(0);
|
||||
printw("Hello World");
|
||||
refresh();
|
||||
getch();
|
||||
endwin();
|
||||
|
||||
return 0;
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user