C Program to Get the Current System Date

This program will get or read the current system date from the system. It displays Year, Month and Day.

#include
#include

int main(void)
{
struct date d;
getdate(&d);
printf(“The current year is: %d\n”, d.da_year);
printf(“The current day is: %d\n”, d.da_day);
printf(“The current month is: %d\n”, d.da_mon);
return 0;
}


Read Users' Comments (0)

0 Response to "C Program to Get the Current System Date"

Post a Comment