gcc , clrscr gotoxy


gcc , clrscr  gotoxy

#include #include void clrscr(void) { int i; for (i = 0; i < 100; i++) // A bunch of new lines for now. It's blank, hey! putchar('\n');} int gotoxy(int x, int y) { char essq[100]; // String variable to hold the escape sequence char xstr[100]; // Strings to hold the x and y coordinates char ystr[100]; // Escape sequences must be built with characters /* ** Convert the screen coordinates to string..


원문링크 : gcc , clrscr gotoxy