RosettaCodeData/Task/GUI-Maximum-window-dimensions/C/gui-maximum-window-dimensions.c

9 lines
191 B
C
Raw Permalink Normal View History

2018-06-22 20:57:24 +00:00
#include<windows.h>
#include<stdio.h>
int main()
{
printf("Dimensions of the screen are (w x h) : %d x %d pixels",GetSystemMetrics(SM_CXSCREEN),GetSystemMetrics(SM_CYSCREEN));
return 0;
}