标签:time函数 %s time_t return color mda 箭头 clu char
1、
#include <stdio.h> #include <time.h> // time_t数据类型,日历时间头文件 int main(void) { time_t current = time(NULL); // 利用time函数获取日历时间(返回1970之后的秒数,整型) struct tm *timer = localtime(¤t); // 利用localtime函数 将日历时间转换为 分解时间(结构体类型),赋给struct tm型指针timer char *wday_name[] = {"7","1","2","3","4","5","6"}; //利用指针创建字符串数组(字符串的数组),等价于 char wday_name[][128];因为结构体timer的结构体 //成员tm_wday的顺序为(0,1,2,3,4,5,6),将其转换为字符串,然后利用索引获取对应的字符串 printf("result: %d - %d - %d - %s - %d - %d - %d.\n", timer -> tm_year + 1900, timer -> tm_mon + 1, timer -> tm_mday, // 利用箭头运算符获取结构体指针指向的成员的值。 wday_name[timer -> tm_wday], timer -> tm_hour, timer -> tm_min, timer -> tm_sec); return 0; }
标签:time函数 %s time_t return color mda 箭头 clu char
原文地址:https://www.cnblogs.com/liujiaxin2018/p/14862305.html