8 lines
191 B
C
8 lines
191 B
C
#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;
|
|
}
|