This shows you the differences between two versions of the page.
| — |
c:dos.h:setdate [2024/02/16 01:06] (current) |
||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | |||
| + | ====== setdate ====== | ||
| + | <code c> | ||
| + | struct time setdate( struct time ); | ||
| + | </code> | ||
| + | |||
| + | ===== description of setdate ===== | ||
| + | change the system date\\ | ||
| + | |||
| + | <code c> | ||
| + | #include<stdio.h> | ||
| + | #include<conio.h> | ||
| + | #include<dos.h> | ||
| + | |||
| + | 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; | ||
| + | } | ||
| + | </code> | ||
| + | |||
| + | ==== 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 | ||