Flow-control structures

From Rosetta Code
Revision as of 18:51, 26 January 2007 by MikeMol (talk | contribs) (Added description of the page, and the Language Features template.)

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.