在 Linux 下用 C 编写显示时间的程序
2008-03-08 12:51:21 来源:WEB开发网核心提示:这里用到时间函数localtime(),显示本地时间的函数: 具体示例 time.c: #include<time.h> #include<stdio.h> main() { strUCt tm *tm_ptr; time_t the_time; (void) time(&the_time);
这里用到时间函数localtime(),显示本地时间的函数:
具体示例 time.c:
#include<time.h>
#include<stdio.h>
main()
{
strUCt tm *tm_ptr;
time_t the_time;
(void) time(&the_time);
tm_ptr=localtime(&the_time);
PRintf("Raw time is %ldn",the_time);
printf("Mytime show:n");
printf("Date:%02d/%02d/%02dn",
tm_ptr->tm_year,tm_ptr->tm_mon+1,tm_ptr->tm_mday);
printf("Time:%02d/%02d/%02dn",
tm_ptr->tm_hour,tm_ptr->tm_min,tm_ptr->tm_sec);
exit(0);
}
运行程序:./time
显示结果:
Raw time is 986544171
Mytime show:
Date:101/04/06
Time:16/02/51
结果显示的第一行显示的数字是 linux 的原始时间表示.还有一个时间函数 gmtime() ,显示的是格林尼治时间,将例子程序的 localtime() 换成 gmtime() ,会有与北京时间相差 8 小时的时间显示,同时将程序做下改动,就能显示出让自己满足的格式,感爱好的朋友不防试试...
- ››linux下两台服务器文件实时同步方案设计和实现
- ››Linux文件描述符中的close on exec标志位
- ››Linux下管道使用的一些限制
- ››Linux 误删/usr/bin 解决方法
- ››linux 添加新用户并赋予sudo执行权限
- ››linux常用软件安装方法
- ››Linux的分区已经被你从Windows中删除,系统启动后...
- ››linux enable命令大全
- ››Linux实现基于Loopback的NVI(NAT Virtual Interfa...
- ››Linux远程访问windows时,出现"连接被对端重...
- ››linux中使用head命令和tail命令查看文件中的指定行...
- ››linux swap 分区调控(swap分区 lvm管理)
更多精彩
赞助商链接