Source Code File 04-10_boxarray

04-10_boxarray.c

#include <ncurses.h>
   
int main()
{
    char box[] = "lqk\nx x\nmqj\n";
        
    initscr();
        
    attrset(A_ALTCHARSET);
    addstr(box);
    refresh();
    getch();
    
    endwin();
    return(0);
}

Notes

* Output for this code is the same as for 04-07_abox.c.