MIPI_AdvancedC_FRTK/Lect3/52_1.c

15 lines
415 B
C
Raw Normal View History

2024-11-14 08:45:50 +03:00
#include <curses.h>
#include <unistd.h>
int main() {
initscr();
char string[]="Hello world!";
int x=10,y=10;
printw(string); /* Напечатать на стандартном экране stdscr */
/* в текущей позиции курсора */
mvprintw(y, x, string);/* Напечатать в позиции (y, x) */
getch();
endwin();
return 0;
}