loop
Mar 17, 2016 at 3:19am
I am a newbie in here
can you help me
the situation is like this.
i have program that i want to go back from the start that use DO LOOp
help me tnx.
Mar 17, 2016 at 10:04am
The correct place for this is the "Beginners" section.
This code uses a do-while loop to go back to the start
1 2 3 4 5 6 7
|
int main()
{
do
{
// something
} while (true);
}
|
Topic archived. No new replies allowed.