使用 C 语言编写程序打印带有当前时间的数字时钟


在本节中,我们将看到如何使用 C 语言制作数字时钟。要处理时间,我们可以使用 time.h 头文件。此头文件有一些函数签名,用于处理日期和时间相关问题。

time.h 的四个重要组成部分如下

  • size_t 此 size_t 是无符号整数类型。它是 sizeof() 的结果。

  • clock_t 用于存储处理器时间

  • time_t 用于存储日历时间

  • struct tm 这是一个结构。它用于保存完整的日期和时间。

示例代码

#include <stdio.h>
#include <time.h>
int main() {
   time_t s, val = 1;
   struct tm* curr_time;
   s = time(NULL); //This will store the time in seconds
   curr_time = localtime(&s); //get the current time using localtime()
   function
      //Display in HH:mm:ss format
      printf("%02d:%02d:%02d", curr_time->tm_hour, curr_time->tm_min,
   curr_time->tm_sec);
}

输出

23:35:44

更新于: 30-07-2019

3000+ 浏览量

开启你的职业生涯

完成课程,获得认证

立即开始
广告