NCurses not restoring terminal behavior
问题 Hello dear Communauts, I'm am creating a terminal animated status report for a parallel software I'm developing. I'm using NCurses. I'm having an issue related to the restoring of the standard behavior of the terminal. After running my software the terminal keeps having just 24 lines, no matter if I call endwin() or I don't. Here the simplified code: int size=10; initscr(); refresh(); while(KeepAlive){ int j=1; mvprintw(j,0,/*Blah blah header*/)); for(int i=0;i<size;i++){ j++; mvprintw(j,0,/