Visual C++ Console에서 TurboC gotoxy구현
Computer/IT/C++ 2006/02/15 00:09 |[CODE type="c"]
void gotoxy(int x, int y)
{
COORD pos={x,y};
SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), pos);
}
[/HTML][/CODE]
'Computer/IT > C++' 카테고리의 다른 글
| [펌] Visual C++ Console - 사격게임 (0) | 2006/02/15 |
|---|---|
| Visual C++ Console 에서 TurboC clrscr 구현 (0) | 2006/02/15 |
| Visual C++ Console에서 TurboC gotoxy구현 (0) | 2006/02/15 |
| Compiler ... (0) | 2006/02/14 |
| 확장열(Escape Sequence) 표기 (0) | 2006/02/14 |
| Console Windows창 Title 바꾸기 (0) | 2006/02/14 |

댓글을 달아 주세요