remove cursor

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

View File

@ -3,7 +3,9 @@
int main() int main()
{ {
initscr(); initscr();
printw("Hello World !!!"); noecho();
curs_set(0);
printw("Hello World");
refresh(); refresh();
getch(); getch();
endwin(); endwin();