[Home]
[Edit this page]
[Recent Changes]
[Special Pages]
[Help]
CContinue
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
CContinue
(C) continue
Keyword that specifies to do the next loop.
int i = 0;
for (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]
