1.time during which some action is awaited;
instant replay caused too long a delay
2.the act of delaying; inactivity resulting in something being put off until a later time
1.cause to be slowed down or delayed;
Traffic was delayed by the bad weather
2.act later than planned, scheduled, or required;
Don't delay your application to graduate school or else it won't be considered
3.stop or halt;
Please stay the bloodshed!
4.slow the growth or development of;
The brain damage will retard the child's language development
函数名: delay 功 能: 将程序的执行暂停一段时间锛埡撩腼級 (该函数是TC下特有的函数,VC下应使用Sleep()函数) 用 法: 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; }