Curly bracket programming language: Difference between revisions

Content deleted Content added
Penagate (talk | contribs)
m Loops: -changed to one true brace style as per its following example blocks.
Line 39:
=== Loops ===
In C, C++, C#, and Java:
while (''boolean expression'')
'''{'''
''statement(s)''
'''}'''
 
do
'''{'''
''statement(s)''
'''}''' while (''boolean expression'');
 
for (''initialisation''; ''termination condition''; ''incrementing expr'')
'''{'''
''statement(s)''
'''}'''