MIPI_AdvancedC_FRTK/Lect4/msys.c

18 lines
332 B
C
Raw Permalink Normal View History

2024-11-14 08:45:50 +03:00
#include <ncurses/ncurses.h>
int main(int argc, char ** argv)
{
// init screen and sets up screen
initscr();
// print to screen
printw("Hello World");
// refreshes the screen
refresh();
// pause the screen output
getch();
// deallocates memory and ends ncurses
// endwin();
return 0;
}