⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 time.c

📁 《Linux程序设计权威指南》源代码
💻 C
字号:
	/* file time.c */	#include <stdio.h>	#include <locale.h>	#include <time.h>	int main(int argc, char *argv[])	{		time_t now;		struct tm *tm;		char buf[100];      		//设置 locale		setlocale(LC_ALL, "");      		now = time(NULL);		tm = localtime(&now);		strftime(buf, sizeof(buf), "%c", tm);		printf("Current Time:%s\n", buf);		strftime(buf, sizeof(buf), "%D %T %p", tm);		printf("Current Time:%s\n", buf);		return 0;	}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -