📜  c 暂停 1 秒 - C 编程语言代码示例

📅  最后修改于: 2022-03-11 15:04:37.054000             🧑  作者: Mango

代码示例1
#include 
#include  //you need this for linux!
#include  //you need this for Windows!

int main(){
    printf("Hello,");
    sleep(5); // format is sleep(x); where x is # of seconds.
    printf("World");
    return 0;
}