Home > Backend Development > C++ > body text

How to Pause Program Execution in C Using a Sleep Function

Susan Sarandon
Release: 2024-10-23 18:58:01
Original
993 people have browsed it

How to Pause Program Execution in C   Using a Sleep Function

Pausing Program Execution in C with the Sleep Function

Many programming languages offer a sleep function to pause program execution for a specified duration. In C , the corresponding function is slightly different.

Question:

How can we pause a C program for a certain number of milliseconds using a sleep function?

Answer:

In C , the standard library provides the std::this_thread::sleep_for function to achieve this. Here's how to use it:

  1. Add the following headers:

    <code class="cpp">#include <chrono>
    #include <thread></code>
    Copy after login
  2. Create a std::chrono::milliseconds object representing the desired duration:

    <code class="cpp">std::chrono::milliseconds timespan(111605); // or any desired value</code>
    Copy after login
  3. Pause the program for the specified duration using std::this_thread::sleep_for:

    <code class="cpp">std::this_thread::sleep_for(timespan);</code>
    Copy after login

Pre-C 11 Sleep Functions:

Before C 11, C didn't have a standard sleep function. Here are some platform-dependent options:

  1. Windows: Sleep(milliseconds) in
  2. Unix: usleep(microseconds) in

However, a better pre-C 11 method is to use the Boost library: boost::this_thread::sleep.

The above is the detailed content of How to Pause Program Execution in C Using a Sleep Function. For more information, please follow other related articles on the PHP Chinese website!

source:php
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!