|
-
April 18th, 1999, 09:36 AM
#1
sleep()/delay() URGENT!!!!!
i need a very simple example/program to show mi how to make the dots to appear one by one with a time interval of 2 seconds. Please kindly help mi. Thanks alot!!!!!!!!
for(count=0;count<10;count++)
{
printf(".\n");
sleep(?%
-
April 19th, 1999, 06:27 AM
#2
Re: sleep()/delay() URGENT!!!!!
hi.
try :
for (count = 0; count < 10; count ++)
{
printf(".\n");
::Sleep(2000); // 2000 milliseconds or 2 seconds
}
it must work.
AAvetyan
-
February 18th, 2000, 09:44 AM
#3
WHAT HEader FILE DO you Need to use the sleep function???
WHAT HEader FILE DO you Need to use the sleep function???
-
February 18th, 2000, 09:48 AM
#4
Re: WHAT HEader FILE DO you Need to use the sleep function???
windows.h
---===---
I'm not here for the rates, but rating a post is a good way for me to know how much i helped. Private messages will do also.
---===---
Daniel
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|