Source Code File 09-10_box

09-10_box.c

#include <ncurses.h>
   
int main()
{
    initscr();

    box(stdscr,0,0); 
    refresh();
    getch();
    
    endwin();
    return(0);
}

Output Screenshot