c语言(vd6.0) sleep函数用法 及delay用法
[复制链接]
1.函数名: delay
功 能: 将程序的执行暂停一段时间(毫秒)
用 法: void delay(unsigned milliseconds);
程序例:
/* Emits a 440-Hz tone for 500 milliseconds */
#include<dos.h>
int main(void)
{
sound(440);
delay(500);
nosound();
return 0;
}
2.#include<windows.h>
#include <stdio.h>
void main()
{
printf("begin");
Sleep(1000);
printf("end");
}
|