goto and labels in C
By: Norman Chap Printer Friendly Format
C provides the infinitely-abusable goto statement, and labels to branch to. Formally, the goto statement is never necessary, and in practice it is almost always easy to write code without it.
Nevertheless, there are a few situations where gotos may find a place. The most common is to abandon processing in some deeply nested structure, such as breaking out of two or more loops at once. The break statement cannot be used directly since it only exits from the innermost loop. Thus:
for ( ... )
for ( ... ) {
...
if (disaster)
goto error;
}
...
error:
/* clean up the mess */
This organization is handy if the error-handling code is non-trivial, and if errors can occur in several places.
A label has the same form as a variable name, and is followed by a colon. It can be attached to any statement in the same function as the goto. The scope of a label is the entire function.
As another example, consider the problem of determining whether two arrays a
and b have an element in common. One possibility is
for (i = 0; i < n; i++)
for (j = 0; j < m; j++)
if (a[i] == b[j])
goto found;
/* didn't find any common element */
...
found:
/* got one: a[i] == b[j] */
...
Code involving a goto can always be written without one, though perhaps
at the price of some repeated tests or an extra variable. For example, the array
search becomes
found = 0;
for (i = 0; i < n && !found; i++)
for (j = 0; j < m && !found; j++)
if (a[i] == b[j])
found = 1;
if (found)
/* got one: a[i-1] == b[j-1] */
...
else
/* didn't find any common element */
...
With a few exceptions like those cited here, code that relies on goto statements is generally harder to understand and to maintain than code without gotos. Although we are not dogmatic about the matter, it does seem that goto statements should be used rarely, if at all.
This tutorial is an excerpt from K&R - The C programming Language
Comment on this tutorial
- Data Science
- Android
- AJAX
- ASP.net
- C
- C++
- C#
- Cocoa
- Cloud Computing
- HTML5
- Java
- Javascript
- JSF
- JSP
- J2ME
- Java Beans
- EJB
- JDBC
- Linux
- Mac OS X
- iPhone
- MySQL
- Office 365
- Perl
- PHP
- Python
- Ruby
- VB.net
- Hibernate
- Struts
- SAP
- Trends
- Tech Reviews
- WebServices
- XML
- Certification
- Interview
categories
Subscribe to Tutorials
Related Tutorials
Simple arithmetic calculations in C
Find square and square root for a given number in C
Printing a simple histogram in C
Sum of the elements of an array in C
Passing pointer to a function in C
Passing double value to a function in C
Infix to Prefix And Postfix in C
while, do while and for loops in C
Archived Comments
1. This is an uncredited, nearly exact copy of Brian
View Tutorial By: HC Saustrup at 2012-03-26 11:24:40
2. Except for when you're programming low level hardw
View Tutorial By: Jonathan H at 2012-05-10 08:46:48
3. The C programming language by Brian Kernighan and
View Tutorial By: harsh at 2012-09-11 15:07:50
4. Norman, it would be good to credit where your writ
View Tutorial By: K&R at 2014-03-20 11:41:56
5. ClaytonMaymn
View Tutorial By: ClaytonMaymn at 2017-07-23 22:04:58
6. Potrafisz t_ dole kiedy typ wyst_pi_ do
Tw
View Tutorial By: strona internetowa at 2017-07-29 20:46:53
7. nclxhaCep
View Tutorial By: ntlyidCep at 2017-09-13 05:51:21