-
int x, y; x = GetSystemMetrics(SM_CXSCREEN); // 가로 y = GetSystemMetrics(SM_CYSCREEN); // 세로 printf("X = %d, Y = %d", x, y); ---------------------------------------------- 결과 => X = 1280 Y = 1024