[Home]
[Edit this page]
[Recent Changes]
[Special Pages]
[Help]
CppWhile
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
CppWhile
(C++) while
Keyword enabling you to perform conditional looping. It is comparable to a for-loop.Examples
A while-loop
int i=0;
while(i!=69)
{
//Code
++i;
}
The same in a for-loop
for(int i=0; i!=69; ++i)
{
//Code
}
'while' links
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
