Search
 
SCRIPT & CODE EXAMPLE
 

CPP

C++ sleep for seconds

#include <iostream>
#include <unistd.h>     //required for usleep()
using namespace std;
int main(){
    //usleep will pause the program in micro-seconds (1000000 micro-seconds is 1 second)
    const int microToSeconds = 1000000;   
    const double delay1 = 2 * microToSeconds;     //2 seconds
    const double delay2 = 4.5 * microToSeconds;     //4.5 seconds
    
    cout<<"Delay 1 in progress... ("<<delay1/microToSeconds<<"s)"<<endl;
    usleep(delay1);        
    cout<<"  => Delay 1 is over"<<endl<<endl;
    
    cout<<"Delay 2 in progress... ("<<delay2/microToSeconds<<"s)"<<endl;
    usleep(delay2);
    cout<<"  => Delay 2 is over"<<endl<<endl;

    return 0;
}
Comment

how to use sleep function in c++ windows

// to use sleep function on windows with c++
#include <Windows.h>
Sleep(3000) // based on milliseconds
Comment

c++ sleep

#include <unistd.h>
// ...
sleep(1); // 1s
Comment

c++ sleep

#include <chrono>
#include <thread>

//sleeping for 3 milliseconds
sleep(3000)
Comment

sleep c++

#include <unistd.h>
unsigned int sleep(unsigned int seconds);
Comment

c++ sleep

std::this_thread::sleep_for(std::chrono::milliseconds(x));
Comment

sleep in c++

#if __WIN32
#include <Windows.h>
#else
#include <unistd.h>
#endif
Comment

ex: c++ sleep function

#include <iostream> 
#include <windows.h> // WinApi header 

using namespace std;

int main() 
{ 
    Beep(523,500); // 523 hertz (C5) for 500 milliseconds     
    cin.get(); // wait 
    return 0; 
}
Comment

PREVIOUS NEXT
Code Example
Cpp :: how to use decrement operator in c++ 
Cpp :: how to write something in power of a number in c++ 
Cpp :: initialize whole array to 0 c++ 
Cpp :: iterating in map/unordered map c++ 
Cpp :: tuple c++ 
Cpp :: string vector c++ 
Cpp :: for loop with array c++ 
Cpp :: c++ function as param 
Cpp :: memcpy c++ usage 
Cpp :: number of words in c++ files 
Cpp :: c++ get full line of input 
Cpp :: opencv c++ image write 
Cpp :: C++ string initialization 
Cpp :: find primes in a range in c++ 
Cpp :: create file c++ 
Cpp :: c++ greatest common divisor 
Cpp :: print 2d array c++ 
Cpp :: vector reverse function in c++ 
Cpp :: c++ get type name of object 
Cpp :: c++ splitstring example 
Cpp :: c++ string element access 
Cpp :: c++ cstring to string 
Cpp :: iterate over vector in c++ 
Cpp :: sorting using comparator in c++ 
Cpp :: hello world in c/++ 
Cpp :: panic: assignment to entry in nil map 
Cpp :: c++ namespace 
Cpp :: how to calculate bitwise xor c++ 
Cpp :: insertion sort cpp 
Cpp :: check if element in dict c++ 
ADD CONTENT
Topic
Content
Source link
Name
1+4 =