日期类型转string
时间: 2023-04-10 16:02:58 浏览: 110
C#转换日期类型实例
日期类型转string可以使用strftime函数,例如:
```c
#include <stdio.h>
#include <time.h>
int main() {
time_t now = time(NULL);
struct tm *t = localtime(&now);
char buf[80];
strftime(buf, sizeof(buf), "%Y-%m-%d %H:%M:%S", t);
printf("%s\n", buf);
return 0;
}
```
这个程序会输出当前时间的字符串表示,例如:
```
2021-11-02 16:30:00
```
阅读全文