在C語言中,可以使用time.h頭文件中的clock()函數來測量程序的運行時間。具體步驟如下:
#include <time.h>
clock_t start = clock();
clock_t end = clock();
double elapsed_time = (double)(end - start) / CLOCKS_PER_SEC;
完整的示例代碼如下:
#include <stdio.h>
#include <time.h>
int main() {
clock_t start = clock();
// 程序邏輯代碼
clock_t end = clock();
double elapsed_time = (double)(end - start) / CLOCKS_PER_SEC;
printf("程序運行時間:%f秒\n", elapsed_time);
return 0;
}
以上代碼將輸出程序的運行時間,以秒為單位。