stdscr - default window
#include <curses.h> extern WINDOW *stdscr;
The external variable stdscr specifies the default window used by functions that do not specify a window using an argument of type WINDOW *. Other windows may be created using newwin().
derwin(), <curses.h>.