====== getdate ====== ===== description of getdate ===== Program to print the current system date, getdate c code below explain how to use this function to print computer date. #include #include int main(void) { struct date d; getdate(&d); printf("Date is %d/%d/%d\n",d.da_day,d.da_mon,d.da_year); return 0; } ==== output of getdate c example ==== Date is 20/01/2012