settime

settime是一種函式名。

簡介

函式名: settime

功 能: 設定系統時間

程式例

#include <stdio.h>

#include <dos.h>

int main(void)

{

struct time t;

gettime(&t);

printf("The current minute is: %d\n", t.ti_min);

printf("The current hour is: %d\n", t.ti_hour);

printf("The current hundredth of a second is: %d\n", t.ti_hund);

printf("The current second is: %d\n", t.ti_sec);

/* Add one to the minutes struct element and then call settime */

t.ti_min++;

settime(&t);

return 0;

}

相關詞條

相關搜尋

熱門詞條

聯絡我們