Getdate Function in C

Getdate Function in C


#include
#include

main()
{
struct date d;

getdate(&d);

printf("Current system date is %d/%d/%d\n",d.da_day,d.da_mon,d.da_year);

return 0;
}



No comments:

Post a Comment