在本節中,我們將了解如何使用 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
以上是C程式列印具有目前時間的數位時鐘的詳細內容。更多資訊請關注PHP中文網其他相關文章!