C 获得系统时间并把该时间作为保存数据的.txt文件名 详细C语言程序 5
展开全部
#include <stdio.h>
#include <time.h>
void main(void)
{
struct tm *newtime;
FILE *f;
time_t ltime;
time (<ime); /* Get the time in seconds */
newtime = localtime(<ime); /* convert it to the structure tm */
f=fopen(“TIME.TXT”."w");
fprintf(f,"The current time and date are %s", asctime(newtime));/* print the local time as a string */
fclose(f);
}
#include <time.h>
void main(void)
{
struct tm *newtime;
FILE *f;
time_t ltime;
time (<ime); /* Get the time in seconds */
newtime = localtime(<ime); /* convert it to the structure tm */
f=fopen(“TIME.TXT”."w");
fprintf(f,"The current time and date are %s", asctime(newtime));/* print the local time as a string */
fclose(f);
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
可以用time函数
追问
具体怎么实现呢
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询