반응형
#include <stdio.h>
#include <windows.h>
//#include <wincon.h>
void textcolor(int i)
{
SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), i);
}
void gotoxy(int x, int y)
{
COORD Pos = {x, y};
SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), Pos);
}
int main()
{
int i;
for(i=0; i<16; i++)
{
textcolor(i);
gotoxy(i, i);
printf("%d color text\n", i);
}
return 0;
}
반응형
'프로그래머의 길 > C & C++' 카테고리의 다른 글
리다이렉션(redirection) 예제 (0) | 2007.03.20 |
---|---|
파일 입출력 관련 함수 정리 (0) | 2007.03.20 |
문자열 함수 strtok 예제 (0) | 2007.03.19 |
동적 할당 관련 함수 malloc, calloc, realloc, free (0) | 2007.03.13 |
함수 포인터 & void 포인터 변수 & typedef (0) | 2007.03.13 |