Answers for "c++ pause"

C++
1

c++ pause

#include <Windows.h>

int main() {
	//do stuff
	system("Pause");
}
Posted by: Guest on March-02-2020
0

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);
}
Posted by: Guest on August-06-2021
1

c++ pause

system("pause");
Posted by: Guest on April-08-2021
0

pause the console c++

// This is only one of many ways but you can use

getchar();
Posted by: Guest on June-24-2020

Browse Popular Code Answers by Language