Answers for "sleep c++ windows"

C++
2

c++ sleep function

#include <chrono>
#include <thread>

std::this_thread::sleep_for(std::chrono::milliseconds(x));
Posted by: Guest on April-30-2021
3

sleep c++ windows

#include <Windows.h>

Sleep(number of milliseconds);
Posted by: Guest on August-14-2020

Browse Popular Code Answers by Language