====== setdate ======
struct time setdate( struct time );
===== description of setdate =====
change the system date\\
#include
#include
#include
int main(void)
{
struct date d;
printf("Please type in new date ( day, month and year ) as int (ddmmyyyy):");
scanf("%d%d%d",&d.da_day,&d.da_mon,&d.da_year);
setdate(&d);
printf("System date is now %d/%d/%d\n",d.da_day,d.da_mon,d.da_year);
getch();
return 0;
}
==== output of setdate c example ====
Please type in new date ( day, month and year ) as int (ddmmyyyy): 28112012
System date is now 28/12/2012