From 7e0f021a9aec35fd8e6725e87e3313b101d26f5e Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Sun, 27 Jan 2008 11:37:44 +0100 Subject: Initial import (2.0.2-6) --- reference/C/SYNTAX/goto.html | 59 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 reference/C/SYNTAX/goto.html (limited to 'reference/C/SYNTAX/goto.html') diff --git a/reference/C/SYNTAX/goto.html b/reference/C/SYNTAX/goto.html new file mode 100644 index 0000000..156534a --- /dev/null +++ b/reference/C/SYNTAX/goto.html @@ -0,0 +1,59 @@ +The GOTO keyword. + + + + +
+
+

The GOTO keyword.

+
+
+Well, I have resisted adding goto for a whole year. But tonight +I have had a couple of beers and +I am ready to go for it. It must be said +that most programmers will claim that +goto is never required and I dont have reason to disagree, but +you may like to differ. + +

goto syntax

+ +
+	goto lab1;
+
+	lab1:
+
+goto allows the program to 'jump' to a named label, in this case lab1, +the target label MUST be terminated with a : (colon). + + +
+

An Example.

+ +goto example. + +

+ +


+

+

+ + + + +
+ Top + + Master Index + + Keywords + + Functions +
+
+

+


+
Martin Leslie +

+ + -- cgit v1.2.3-54-g00ecf