[Home]
[Edit this page]
[Recent Changes]
[Special Pages]
[Help]
CppContinue
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
CppContinue
(C++) continue
Keyword that specifies to do the next loop.
for (int i=0; i!=10; ++i)
{
if (i%2==1) //If i is odd
{
continue; //loop again
}
//Stuff to do if i is even
}
'continue' links
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
