Search
 
SCRIPT & CODE EXAMPLE
 

CPP

C++ pause program

#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

c++ pause

#include <Windows.h>

int main() {
	//do stuff
	system("Pause");
}
Comment

How to pause a c++ program.

//On windows.
#include<windows.h>
Sleep(milliseconds);

//On linux.
#include<unistd.h>
unsigned int microsecond = 1000000;
usleep(3 * microsecond);//sleeps for 3 second

// c++ 11 for high resulution.

#include <chrono>
#include <thread>

int main() {
    using namespace std::this_thread; // sleep_for, sleep_until
    using namespace std::chrono; // nanoseconds, system_clock, seconds

    sleep_for(nanoseconds(10));
    // or 
    sleep_until(system_clock::now() + seconds(1));
}

// C++ 14 for high resuluton.

#include <chrono>
#include <thread>

int main() {
    using namespace std::this_thread;     // sleep_for, sleep_until
    using namespace std::chrono_literals; // ns, us, ms, s, h, etc.
    using std::chrono::system_clock;

    sleep_for(10ns);
  	// or
    sleep_until(system_clock::now() + 1s);
}
Comment

c++ pause

system("pause");
Comment

PREVIOUS NEXT
Code Example
Cpp :: create file c++ 
Cpp :: read comma separated text file in c++ 
Cpp :: convert string to lpstr 
Cpp :: Story of c++ 
Cpp :: char ascii c++ 
Cpp :: c++ Program for Sum of the digits of a given number 
Cpp :: c++ program transpose of matrix 
Cpp :: ubuntu dotnet core install 
Cpp :: coordinate in 1d array c++ 
Cpp :: index string c++ 
Cpp :: append string cpp 
Cpp :: C++ structure (Struct) 
Cpp :: how to make an overloaded constructor in c++ 
Cpp :: cout hex c++ 
Cpp :: convert unsigned long to string c++ 
Cpp :: how to find the size of a character array in c++ 
Cpp :: iterate over vector in c++ 
Cpp :: stack implementation using class in c++ 
Cpp :: prisma client 
Cpp :: cpp absolute value 
Cpp :: hexadecimal or binary to int c++ 
Cpp :: how to delete a node c++ 
Cpp :: c++ string find example 
Cpp :: letter occurrence in string c++ 
Cpp :: ascii cpp 
Cpp :: quicksort 
Cpp :: c ++ splitlines 
Cpp :: vector iterating in c++ 
Cpp :: Subarray with given sum in c++ 
Cpp :: how to have a queue as a parameter in c++ 
ADD CONTENT
Topic
Content
Source link
Name
8+7 =