MIPI_AdvancedC_FRTK/Lect3/52.c

15 lines
290 B
C
Raw Normal View History

2024-11-14 08:45:50 +03:00
#include <curses.h>
#include <unistd.h>
int main() {
initscr();
printw("Hello World !!!");
printw("\nPress any key to continue... ");
// refresh(); // по
пробуйте включить и выключить
sleep(3);
getch();
endwin();
return 0;
}