C语言学习笔记---时间函数strftime()
strftime函数主要用于时间格式化,它的函数原型如下:size_t __cdecl strftime(char * __restrict__ _Buf,size_t _SizeInBytes,const char * __restrict__ _Format,const struct tm * __restrict__ _Tm);它有4个参数:_Buf, 表示返回的时间字符串_SizeInBytes, 要写入的字节的最大数量_Format, 这是 C 字符串,包含了普通字符和特殊格式说明符