Code tagged with delay

Delay Function

Posted by Jorden Mauro over 2 years ago
Does just what it says...
inline void delay(const double& d)
{    
   clock_t start=clock();
   while( (clock()-start)
Language C++ / Tagged with delay