如何使用C语言settime函数?(就是用来设置系统的时间)

2025-01-27 14:27:17
推荐回答(2个)
回答1:

1、函数名: settime

功 能: 设置系统时间

原型:void settime

2、例程:

#include 
#include 
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;
}

回答2:

#include
#include

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;
}