This is a Hardware-specific function. It is not implemented in the Compiler.
#include <time.h>
clock_t clock(void);
clock() determines the amount of time since your system started, in clock ticks. To convert to seconds, divide by CLOCKS_PER_SEC.
clock() returns the amount of time since system startup.