Visual C++ output debug string

// WinAPI Style 로 Debug 창에 출력하기
char msg[100];
int a = 100;
sprintf(msg, "Debug Testing... %d\n", a);
OutputDebugString(msg);

// MFC Style 로 Debug 창에 출력하기
int a = 100;
TRACE("Debug Testing... %d\n", a);

comments:

댓글 쓰기