[C] gotoxy()

#include "stdafx.h"
#include<stdio.h>
#include<process.h>
#include<stdlib.h>
#include<windows.h>
#include <conio.h>

void gotoxy(int x, int y);

int main(){

 system("cls");
 gotoxy(37,12);
 printf("center\n");


 return 0;
}

void gotoxy(int x, int y)
{

 COORD Pos = {x-1, y-1};
 SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), Pos);

}





gotoxy() 를 사용하기 위해서는 void gotoxy(int x, int y); 함수를 추가해줘야 한다.

'and so on' 카테고리의 다른 글

[C] delay함수  (0) 2011.09.16
[c] 커서 움직이기  (0) 2011.09.16
정재형 유희열 보컬대결  (0) 2011.05.10
집에서 일할 때 집중하라  (0) 2011.01.14
슬럼프  (0) 2010.05.18