Is there a function like Sleep(time); that pauses the program for X milliseconds, but in C++?
Sleep(time);
Which header should I add and what is the function\'s sign
For Windows:
#include "windows.h" Sleep(10);
For Unix:
#include usleep(10)