c语言strftime demo
Posted luckygxf
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c语言strftime demo相关的知识,希望对你有一定的参考价值。
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 ", rawtime); timeInfo = localtime(&rawtime); strftime(buff, sizeof(buff),"%Y-%m-%d %H:%M:%S", timeInfo); printf("buff:%s ", buff); return 0; }
以上是关于c语言strftime demo的主要内容,如果未能解决你的问题,请参考以下文章
C语言strftime()函数 (格式化时间)(注意第二个参数size_t maxsize一定要大于第三个参数const char *format指向字符串的长度)
[异常解决] Keil安装好nRF51822开发环境,运行DEMO报错:Error:“GPIOTE_CONFIG_NUM_OF_LOW_POWER_ENVENTS” is undefined(代码片段
我的C语言学习进阶之旅解决 Visual Studio 2019 报错:错误 C4996 ‘fscanf‘: This function or variable may be unsafe.(代码片段
我的C语言学习进阶之旅解决 Visual Studio 2019 报错:错误 C4996 ‘fscanf‘: This function or variable may be unsafe.(代码片段