如何在C中暂停或暂停程序几秒钟?我正在寻找Java中使用的类似内容:
Thread.sleep(interval);
可以用C吗? 提前谢谢。
答案 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中的工作方式不同,而在一个中以毫秒为单位,在另一个中以秒为单位。