睡眠程序在C中执行几秒钟

时间:2015-10-20 12:00:25

标签: c

如何在C中暂停或暂停程序几秒钟?我正在寻找Java中使用的类似内容:

Thread.sleep(interval); 

可以用C吗? 提前谢谢。

2 个答案:

答案 0 :(得分:6)

#include <stdio.h>
#include <unistd.h>

int main (void){

    sleep(3);

    return 0;
}

了解更多here

答案 1 :(得分:4)

这里有一个答案:What is the proper #include for the function 'sleep' in C?

小心它在Unix和Windows中的工作方式不同,而在一个中以毫秒为单位,在另一个中以秒为单位。