void timeWait (float threshold) {
float timeInitial, timeMeasured, timeDelta = 0;
timeInitial = (float)clock();
while (timeDelta < threshold) {
timeMeasured = (float)clock();
timeDelta = ((timeMeasured - timeInitial) / (float)CLOCKS_PER_SEC);
}
printf("%.2f - %.2f s have passed.", threshold, timeDelta);
}
Code Example |
---|
C :: sqlserver insert with set identity |
C :: print variable adress c |
C :: how to reset all values of 2d vector to 0 |
C :: c header file example |
C :: round float in c |
C :: mount cifs |
C :: c pointers |
C :: getchar |
C :: how to make a check bigger |
C :: c bits |
C :: selection sort c |
C :: array of strings in c |
C :: turn a char array into double C |
C :: pid of a process in c |
C :: Float and Double Input/Output |
C :: lxc Failed to load config for |
C :: arduino empty serial buffer |
C :: sqrt function in c |
C :: Compile multiple C files |
C :: c check if character is lower case |
C :: C Syntax of realloc() |
C :: create syscall |
C :: columntransformer in randomizedsearchcv |
C :: Syntax for creating a node |
C :: User input in struct |
C :: how to get out of function in c |
C :: 1 f = c |
C :: c program to take array input from user |
C :: transform yt video into background overlay |
C :: c joystick arduino |