diff --git a/language/control-structures.xml b/language/control-structures.xml index 6fcf49b212..4360ed7394 100644 --- a/language/control-structures.xml +++ b/language/control-structures.xml @@ -1,5 +1,5 @@ - + Control Structures @@ -348,7 +348,7 @@ do { Advanced C users may be familiar with a different usage of the do-while loop, to allow stopping execution in the middle of code blocks, by encapsulating them with - do-while (1), and using the do-while (0), and using the break statement. The following code fragment demonstrates this: @@ -368,7 +368,7 @@ do { /* process i */ -} while (1); +} while (0); ?> ]]>