remove cursor

This commit is contained in:
smayzy 2025-12-07 11:00:05 +01:00
parent 2242392d54
commit 2ac9b83a55

View File

@ -2,11 +2,13 @@
int main() int main()
{ {
initscr(); initscr();
printw("Hello World !!!"); noecho();
refresh(); curs_set(0);
getch(); printw("Hello World");
endwin(); refresh();
getch();
endwin();
return 0; return 0;
} }