码迷,mamicode.com
首页 > 编程语言 > 详细

c语言strftime demo

时间:2020-03-17 08:05:15      阅读:51      评论:0      收藏:0      [点我收藏+]

标签:main   har   mic   获取   sizeof   print   bsp   图片   %s   

time.h 格式化日期

time()获取当前日期的秒,localtime()获取当前时间字段, strftime格式化日期到字符串

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <pthread.h>
#include <time.h>


int main() {
    time_t rawtime;
    struct tm *timeInfo = NULL;
    char buff[80];

    time(&rawtime);
    printf("rawtime:%d\n", rawtime);
    timeInfo = localtime(&rawtime);
    strftime(buff, sizeof(buff),"%Y-%m-%d %H:%M:%S",  timeInfo);
    printf("buff:%s\n", buff);

    return 0;
}

  技术图片

 

c语言strftime demo

标签:main   har   mic   获取   sizeof   print   bsp   图片   %s   

原文地址:https://www.cnblogs.com/luckygxf/p/12508201.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!