Loading...
Select Version
&pagelevel(4)&pagelevel
Definition | #include <stdlib.h> int cputime(void);
|
Return val. | Integer indicating the CPU time consumed in ten thousandths of a second. |
Example | #include <stdio.h>
#include <stdlib.h>
int main(void)
{
float time_f;
time_f = (float)cputime() / 10000;
printf("cputime since logon: %f seconds\n", time_f);
return 0;
}
|