C语言编程之时间函数举例1
程序员文章站
2024-01-28 20:03:40
...
问题描述:使用C语言编程实现时间函数举例。
程序源码:
#include "stdio.h"
#include "time.h"
void main()
{
time_t lt; /*define a longint time varible*/
lt=time(NULL);/*system time and date*/
printf(ctime(<)); /*english format output*/
printf(asctime(localtime(<)));/*tranfer to tm*/
printf(asctime(gmtime(<))); /*tranfer to Greenwich time*/
}
上一篇: mysql 时间相关问题