linux编程精髓 源代码

源代码在线查看: ch13-times.c

软件大小: 39 K
上传用户: afaslgo
关键词: linux 编程 源代码
下载地址: 免注册下载 普通下载 VIP

相关代码

				/* ch13-times.c --- demonstrate locale-based times */								#include 				#include 				#include 								int main(void)				{					char buf[100];					time_t now;					struct tm *curtime;									setlocale(LC_ALL, "");					time(& now);					curtime = localtime(& now);					(void) strftime(buf, sizeof buf,							"It is now %A, %B %d, %Y, %I:%M %p", curtime);									printf("%s\n", buf);									printf("ctime() says: %s", ctime(& now));					exit(0);				}							

相关资源