请输入您要查询的百科知识:

 

词条 biostime
释义

§ 函数名

biostime

§ 功能

读取或设置BIOS时间

§ 函数语法

long biostime (int cmd, long newtime);

§ 程序实例

#include <stdio.h>

#include <bios.h>

#include <time.h>

#include <conio.h>

int main(void)

{

long bios_time;

clrscr();

cprintf("The number of clock ticks since midnight is:\\r\");

cprintf("The number of seconds since midnight is:\\r\");

cprintf("The number of minutes since midnight is:\\r\");

cprintf("The number of hours since midnight is:\\r\");

cprintf("\\r\Press any key to quit:");

while(!kbhit())

{

bios_time = biostime(0, 0L);

gotoxy(50, 1);

cprintf("%lu", bios_time);

gotoxy(50, 2);

cprintf("%.4f", bios_time / CLK_TCK);

gotoxy(50, 3);

cprintf("%.4f", bios_time / CLK_TCK / 60);

gotoxy(50, 4);

cprintf("%.4f", bios_time / CLK_TCK / 3600);

}

return 0;

}

随便看

 

百科全书收录594082条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。

 

Copyright © 2004-2023 Cnenc.net All Rights Reserved
更新时间:2024/11/11 10:08:10