This function is Hardware-specific implementation. It is not implemented in this 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.