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 :: cpp how to input a variable without hitting enter 
Cpp :: master header file c++ 
Cpp :: check if double is integer c++ 
Cpp :: sum vector c++ 
Cpp :: arduino get size of array 
Cpp :: find max value in image c++ 
Cpp :: qimage transformed 
Cpp :: cpp executing without console 
Cpp :: dev c++ tahe last word error 
Cpp :: ue4 find component c++ 
Cpp :: c++ save typeid 
Cpp :: C++ Fahrenheit to Kelvin 
Cpp :: invalid next size (normal) c++ 
Cpp :: how to use comparator funtion in priority queue in c++ 
Cpp :: differency between c++ std and stl 
Cpp :: HOW TO TURN LINK TO BUTTON IN MVC 
Cpp :: c++ Modulo 10^9+7 (1000000007) 
Cpp :: BMI Calculator Program in C++ 
Cpp :: reading in lines from a file to a vector c++ 
Cpp :: how to free the vector c++ 
Cpp :: format c++ discord 
Cpp :: c++ main function 
Cpp :: cpp merge two sets 
Cpp :: how to run a c++ program in the background 
Cpp :: run c++ file putty 
Cpp :: c++ program to take input from user 
Cpp :: c++ open all files in directory 
Cpp :: c++ type casting 
Cpp :: arguments to a class instance c++ 
Cpp :: binary file in c++ 
ADD CONTENT
Topic
Content
Source link
Name
1+6 =