clock()函數是一個計時函數,用于測量CPU執行時間。在C/C++中,clock()函數的參數和用法如下:
參數:clock()函數沒有參數。
用法:
示例代碼:
#include <stdio.h>
#include <time.h>
int main() {
clock_t start, end;
double cpu_time_used;
start = clock();
// 執行需要測量時間的代碼
end = clock();
cpu_time_used = ((double) (end - start)) / CLOCKS_PER_SEC;
printf("程序執行時間為 %f 秒\n", cpu_time_used);
return 0;
}