Flow-control structures: Difference between revisions

From Rosetta Code
Content added Content deleted
(Added C++)
 
(Added description of the page, and the Language Features template.)
Line 1: Line 1:
{{Language Feature}}

In this task, we document common flow-control structures. One common example of a flow-control structure is the <code>goto</code> construct.

==[[C plus plus|C++]]==
==[[C plus plus|C++]]==
[[Category:C plus plus]]
[[Category:C plus plus]]
=== Run-Time Control Structures ===

==== goto ====
==== goto ====
'''Compiler:''' [[GCC]] 3.3.4
'''Compiler:''' [[GCC]] 3.3.4

Revision as of 18:51, 26 January 2007

Template:Language Feature

In this task, we document common flow-control structures. One common example of a flow-control structure is the goto construct.

C++

goto

Compiler: GCC 3.3.4

#include <iostream> 

int main()
{
 LOOP:
  std::cout << "Hello, World!\n";
 goto LOOP;
}

Note that "goto" may also be used in conjunction with other forms of branching.