settime

settime是一種函式名。

基本介紹

  • 中文名:settime
  • 類型:函式名
  • 功 能: 設定系統時間
  • 用 法: void 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;
}

相關詞條

熱門詞條

聯絡我們