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;
}

Post a Comment

Previous Post Next Post