mirror of
https://github.com/fofolee/uTools-Manuals.git
synced 2025-06-09 07:24:04 +08:00
36 lines
648 B
HTML
36 lines
648 B
HTML
<h1>标准库函数 - sleep</h1>
|
||
|
||
|
||
<p>原型:extern void sleep(unsigned int sec);</p>
|
||
|
||
<p>用法:#include <system.h></p>
|
||
|
||
<p>功能:短暂延时</p>
|
||
|
||
<p>说明:延时sec秒</p>
|
||
|
||
举例:<pre><code class="language-c">
|
||
|
||
// sleep.c
|
||
|
||
#include <system.h>
|
||
|
||
main()
|
||
{
|
||
int c;
|
||
|
||
clrscr();
|
||
printf("\nHello, world!");
|
||
|
||
sleep(1);
|
||
|
||
clrscr();
|
||
printf("\nHi, guys");
|
||
|
||
getchar();
|
||
return 0;
|
||
}
|
||
|
||
</code></pre>相关函数:<a href="delay.html">delay</a>
|
||
|