#include <stdio.h>
#include <windows.h>

int main ()
{
SYSTEMTIME lpSystemTime;

GetSystemTime(&lpSystemTime);
printf("Today is: %d/%d/%d\n", lpSystemTime.wYear,
lpSystemTime.wMonth, lpSystemTime.wDay);
return 0;
}