Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1204630
  • 博文数量: 252
  • 博客积分: 5421
  • 博客等级: 大校
  • 技术积分: 2418
  • 用 户 组: 普通用户
  • 注册时间: 2007-06-17 12:59
文章分类

全部博文(252)

文章存档

2017年(3)

2016年(18)

2015年(31)

2014年(18)

2013年(7)

2012年(8)

2011年(12)

2010年(30)

2009年(32)

2008年(57)

2007年(36)

分类: C/C++

2016-06-15 14:53:49


  1. #include <stdio.h>
  2. #include <time.h>
  3. char* getDateTime();

  4. int main()
  5. {
  6.     char* nowtime = getDateTime();
  7.     printf("%s\n", nowtime);
  8.     return 0;
  9. }

  10. char* getDateTime()
  11. {
  12.     static char nowtime[20];
  13.     time_t rawtime;
  14.     struct tm* ltime;
  15.     time(&rawtime);
  16.     ltime = localtime(&rawtime);
  17.     strftime(nowtime, 20, "%Y-%m-%d %H:%M:%S", ltime);
  18.     return nowtime;
  19. }

阅读(834) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~