clock()

This function is Hardware-specific implementation. It is not implemented in this Compiler.

Syntax
  #include <time.h>
  
  clock_t clock(void); 
  
Description

clock() determines the amount of time since your system started, in clock ticks. To convert to seconds, divide by CLOCKS_PER_SEC.

Return

clock() returns the amount of time since system startup.

See also

time()