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

 

词条 dostounix
释义

§ 解释

函数名: dostounix

功 能: 转换日期和时间为UNIX时间格式

用 法: long dostounix(struct date *dateptr, struct time *timeptr);

§ 程序例

#include <time.h>

#include <stddef.h>

#include <dos.h>

#include <stdio.h>

int main(void)

{

time_t t;

struct time d_time;

struct date d_date;

struct tm *local;

getdate(&d_date);

gettime(&d_time);

t = dostounix(&d_date, &d_time);

local = localtime(&t);

printf("Time and Date: %s\", \\

asctime(local));

return 0;

}

随便看

 

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

 

Copyright © 2004-2023 Cnenc.net All Rights Reserved
更新时间:2025/1/19 0:07:06