描述
C庫函數clock_t clock(void)返回自程序啟動以來經過的時鍾滴答數。要獲得 CPU 使用的秒數,您需要除以 CLOCKS_PER_SEC。
在 CLOCKS_PER_SEC 等於 1000000 的 32 位係統上,此函數將大約每 72 分鍾返回相同的值。
聲明
以下是 clock() 函數的聲明。
clock_t clock(void)
參數
NA
返回值
此函數返回自程序啟動以來經過的時鍾滴答數。失敗時,該函數返回值 -1。
示例
下麵的例子展示了 clock() 函數的用法。
#include <time.h>
#include <stdio.h>
int main () {
clock_t start_t, end_t, total_t;
int i;
start_t = clock();
printf("Starting of the program, start_t = %ld\n", start_t);
printf("Going to scan a big loop, start_t = %ld\n", start_t);
for(i=0; i< 10000000; i++) {
}
end_t = clock();
printf("End of the big loop, end_t = %ld\n", end_t);
total_t = (double)(end_t - start_t) / CLOCKS_PER_SEC;
printf("Total time taken by CPU:%f\n", total_t );
printf("Exiting of the program...\n");
return(0);
}
讓我們編譯並運行上麵的程序,它會產生以下結果——
Starting of the program, start_t = 0 Going to scan a big loop, start_t = 0 End of the big loop, end_t = 20000 Total time taken by CPU:0.000000 Exiting of the program...
相關用法
- C語言 closegraph()用法及代碼示例
- C語言 cleardevice()用法及代碼示例
- C語言 clearerr()用法及代碼示例
- C語言 ctime()用法及代碼示例
- C語言 ceil()用法及代碼示例
- C語言 calloc()用法及代碼示例
- C語言 cos()用法及代碼示例
- C語言 cosh()用法及代碼示例
- C語言 宏 assert()用法及代碼示例
- C語言 vprintf()用法及代碼示例
- C語言 宏 va_start()用法及代碼示例
- C語言 setlocale()用法及代碼示例
- C語言 fread()用法及代碼示例
- C語言 sinh()用法及代碼示例
- C語言 宏 offsetof()用法及代碼示例
- C語言 feof()用法及代碼示例
- C語言 scanf()用法及代碼示例
- C語言 imagesize()用法及代碼示例
- C語言 getarcoords()用法及代碼示例
- C語言 isdigit()用法及代碼示例
注:本文由純淨天空篩選整理自 C library function - clock()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。