20 lines
208 B
C
20 lines
208 B
C
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <curses.h>
|
|
|
|
int main() {
|
|
initscr();
|
|
cbreak();
|
|
noecho();
|
|
|
|
int x = 40;
|
|
int y = 60;
|
|
char ch = 'x';
|
|
mvaddch(x, y, ch);
|
|
|
|
getch();
|
|
endwin();
|
|
|
|
return 0;
|
|
|
|
}
|