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()
{
initscr();
printw("Hello World !!!");
refresh();
getch();
endwin();
initscr();
noecho();
curs_set(0);
printw("Hello World");
refresh();
getch();
endwin();
return 0;
return 0;
}