Jump to content

Loop structures: Difference between revisions

Added C section
(AppleScript: repeat-until)
(Added C section)
Line 10:
--endless loop
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 );
}
Cookies help us deliver our services. By using our services, you agree to our use of cookies.