//아 이해안가... 내일 다시 수정.
int gotoxy(int x,int y)
{
char essq[100];
char xstr[100];
char ystr[100];
/*
**화면 좌표를 문자열로
*/
sprintf(xstr,"%d",x); //xstr[0]을 x 값으로 초기화
sprintf(ystr,"%d",y); //ystr[0]을 y 값으로 초기화
essq[0]='\0';
strcat(essq,"\033[");
strcat(essq,ystr);
strcat(essq,"d");
strcat(essq,"\033[");
strcat(essq,xstr);
strcat(essq,"G");
printf("%s",essq);
return 0;
}
'Programming' 카테고리의 다른 글
[perl] webhacking 4번 http get request (3) | 2012.12.10 |
---|---|
[C++] 스택사이즈 변경(stack size) (0) | 2012.11.06 |
[C++] Shooting Game (0) | 2012.06.01 |
[C++] 리눅스 gotoxy, move (0) | 2012.05.29 |
[C++] Matrix(1) (1) | 2012.05.28 |