sleep函数的用法
时间: 2023-09-02 11:06:18 浏览: 152
Sleep函数的一个实现
sleep函数是C语言中的一个标准库函数,其原型如下:
```c
unsigned int sleep(unsigned int seconds);
```
该函数的作用是让当前进程暂停执行,等待指定的秒数后再继续执行下去。函数的参数seconds是要暂停的秒数。
函数返回值为0表示成功休眠了指定的秒数,返回值为剩余的秒数表示被其他信号中断了的休眠时间。
下面是一个简单的例子,演示了如何使用sleep函数使程序暂停5秒:
```c
#include <stdio.h>
#include <unistd.h>
int main() {
printf("Hello\n");
sleep(5);
printf("World\n");
return 0;
}
```
运行后,程序会输出"Hello",然后暂停5秒,最后输出"World"。
阅读全文