MIPI_AdvancedC_FRTK/Lect4/snake_seminar_3_food.c
2024-11-14 08:45:50 +03:00

17 lines
323 B
C

#include <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;
}