Source Code File 01-01_goodbye

01-01_goodbye.c

#include <ncurses.h>
    
int main()
{
    initscr();  
    addstr(Goodbye, cruel world!);
    
    endwin();
    return(0);  
}

Output Screenshot

(No output)

Notes

* This is the source code as presented in the book. It will not compile.