Source Code File 04-06_acsstring

04-06_acsstring.c

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

    attrset(A_ALTCHARSET);
    addstr("Hello there!");
    refresh();
    getch();
        
    endwin();
    return(0);
}

Output Screenshot

Notes

* As with other terminals, the output you see varies.