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 <stdio.h>
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;
}
Popularity: 1% [?]
Visitors who read this post, also read:
By using/following this site you agree to our Legal Disclaimer


Thanks a Lot.
It helped me a Lot.
THANK YOU..!!!
Leave your response!