Loop structures: Difference between revisions

Content added Content deleted
(AppleScript: repeat-until)
(Added C section)
Line 10: Line 10:
--endless loop
--endless loop
end repeat
end repeat

==[[C]]==
[[Category:C]]
===while===
'''Compiler:''' [[GCC]] 4.1.2
int main (int argc, char ** argv) {
int condition = 1;
while ( condition ) {
// Do something
// Don't forget to change the value of condition.
// If it remains nonzero, we'll have an infinite loop.
}
}

===do-while===
'''Compiler:''' [[GCC]] 4.1.2
int main (void) {
int condition = 1;
do {
// Do something
// Don't forget to change the value of condition.
// If it remains nonzero, we'll have an infinite loop.
} while ( condition );
}