c语言中写入日期和时间

Posted 小虾米2018

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c语言中写入日期和时间相关的知识,希望对你有一定的参考价值。

c语言中写入日期和时间。

1、

#include <stdio.h>
#include <time.h>

int main(void)
{
    FILE *fp;
    
    time_t current = time(NULL);
    struct tm *timer = localtime(&current);
    
    if((fp = fopen("xxx.txt","w")) == NULL)
        printf("\\afile does not exist.\\n");
    else
    {
        fprintf(fp, "%d - %d - %d - %d - %d - %d\\n", timer -> tm_year + 1900,timer -> tm_mon + 1 ,timer -> tm_mday,
        timer -> tm_hour,timer -> tm_min,timer ->tm_sec);    
        printf("written successfully.\\n");
    }
    return 0;
} 

 

 

 

以上是关于c语言中写入日期和时间的主要内容,如果未能解决你的问题,请参考以下文章

C语言中有没有能显示系统日期和时间的函数?

C语言写入文件,文件操作

C语言代码片段

如何从片段中调用 getSupportFragmentManager()?

GSheet的Google应用程序脚本-在B列上查找今天的日期,并在同一行的C列上写当前时间

如何将这个 Objective-C 代码片段写入 Swift?