在C語言中,可以使用time.h頭文件中的函數來計算時間差。以下是一個簡單的示例函數,可以計算兩個時間點之間的時間差:
#include <stdio.h>
#include <time.h>
void time_difference(struct tm start_time, struct tm end_time) {
time_t start, end;
start = mktime(&start_time);
end = mktime(&end_time);
double diff = difftime(end, start);
printf("Time difference: %.2f seconds\n", diff);
}
int main() {
struct tm start_time = {0};
struct tm end_time = {0};
start_time.tm_year = 121; // year - 1900
start_time.tm_mon = 0; // month (0 - 11)
start_time.tm_mday = 1; // day of the month (1 - 31)
end_time.tm_year = 121; // year - 1900
end_time.tm_mon = 3; // month (0 - 11)
end_time.tm_mday = 1; // day of the month (1 - 31)
time_difference(start_time, end_time);
return 0;
}
在這個示例中,首先定義了一個time_difference
函數,接受兩個struct tm
類型的參數,分別表示起始時間和結束時間。函數中使用mktime
函數將時間結構轉換為time_t
類型,然后使用difftime
函數計算時間差,并將結果打印出來。
在main
函數中定義了起始時間和結束時間,并調用了time_difference
函數來計算時間差。可以根據實際情況修改起始時間和結束時間的值來計算不同時間點之間的時間差。