Is dere any way to pause a for loop in between a program

Light Poster
23Aug2009,13:33   #1
amanbaua's Avatar
Can u plzz help me out of dis prob of pausing a for loop
Go4Expert Founder
23Aug2009,14:16   #2
shabbir's Avatar
Use break statement
Invasive contributor
23Aug2009,14:52   #3
mayjune's Avatar
What do you mean pausing a loop? If you want to get out of it, then what shabbir said will work.
If not, please post the question properly..
Contributor
23Aug2009,14:58   #4
c_user's Avatar
you can use exit(0) or if it is an infinite loop use the keys ctrl+c to terminate any .exe file..
have a good day
Invasive contributor
23Aug2009,15:01   #5
mayjune's Avatar
He wants to pause c_user, not exit the program..
Contributor
23Aug2009,15:08   #6
c_user's Avatar
mayjune i think by the use of break we will be "out" of the loop and not "pause"...acc. to my knowledge.

can u please specify me whether i m right or not?
Invasive contributor
23Aug2009,15:21   #7
mayjune's Avatar
You are right, it will get him out of the loop, but then exit function wont pause it either. Would it?
I think we all are not sure what he means by pausing a loop in between a program. Let him reply by what he implies...and whatever he means he can do it
Contributor
23Aug2009,15:26   #8
c_user's Avatar
yes you are right mayjune....
he have to be specific so as to get the appropriate answer....:-).
mayjune like this
Light Poster
25Aug2009,18:39   #9
amanbaua's Avatar
ye may june i m in search of pausing a for loop
the break and exit statements make the control get out of the loop
i hav just made a graphics using c program in which if th for loop is paused for a moment my program will work
so is i possi ble my friends dat a for loop can be paused?????
~ Б0ЯИ Τ0 С0δЭ ~
25Aug2009,18:51   #10
SaswatPadhi's Avatar
So, you want a delay in your loop ... "pause" diverted all of us to something different.

Anyway, you can do it like this :

For TurboC++ ::
Code:
#include <dos.h>
.
.
.
for(...)
{
    .
    .
    delay(x); // This will put a delay of x milliseconds
    .
    .

}
For ANSI C++ ::
Code:
#include <windows.h>
.
.
.
for(...)
{
    .
    .
    Sleep(x); // This will put a delay of x milliseconds
    .
    .

}
mayjune like this