void gotoxy(int x, int y)
{
COORD pos={x,y};
SetConsoleCursorPosition( GetStdHandle( STD_OUTPUT_HANDLE ), pos );
}
출저 : 싸구려 코드 블로그 ( http://sarangsai.com/11 )
'[ Programing ] > C++' 카테고리의 다른 글
가변인자 (0) | 2010.01.30 |
---|---|
Console 환경 전용 API 함수 (0) | 2010.01.29 |
Visual C++ Console 에서 TurboC clrscr 구현 (0) | 2010.01.29 |
Console Windows창 Title 바꾸기 (0) | 2010.01.29 |
[기초] file 읽기 / 쓰기 (0) | 2010.01.28 |