#include #include #include int main(long argc, char **argv) { char s[80]="?"; int x,y; WINDOW *win; initscr(); win = newwin(0,0,0,0); leaveok(win, 1); for (x=10; x<=55; x++) { for (y=1; y<=6; y++) { s[0] = (char ) ('0'+y); mvwaddstr(win,y,x,s); wrefresh(win); } sleep(1); } sleep(5); endwin(); return 0; }