用c语言按“年/月/日”格式输出系统日期,按“时:分:秒”格式输出系统时间。
时间: 2023-09-04 16:15:01 浏览: 69
输出系统的日期与时间
可以使用C语言中的time库来获取系统日期和时间,并使用strftime函数格式化输出。下面是一个示例代码:
```c
#include <stdio.h>
#include <time.h>
int main() {
time_t t = time(NULL);
struct tm *tm = localtime(&t);
// 输出日期
char date[11];
strftime(date, sizeof(date), "%Y/%m/%d", tm);
printf("Date: %s\n", date);
// 输出时间
char time[9];
strftime(time, sizeof(time), "%H:%M:%S", tm);
printf("Time: %s\n", time);
return 0;
}
```
运行结果类似于:
```
Date: 2021/10/01
Time: 22:30:45
```
阅读全文