當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C語言 clock()用法及代碼示例



描述

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 library function - clock()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。