#include int main(int argc, char* argv[]) { initscr(); clear(); move(2, 2); addstr("Hello world"); getch(); endwin(); }