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; }