Examples of C-language labels and goto usage

Source: Internet
Author: User

A tag is usually placed at the end of a function and will be executed. In many cases, the tag is executed in the order from top to bottom.

Goto allowsCodeAutomatically jump to the Code defined by the tag to continue execution.

# Include <stdio. h>

Int main ()
{
Int I, J;
For (I = 0; I <10; I ++)
{
Printf ("outer loop executing. I = % d \ n", I );
For (j = 0; j <3; j ++)
{
Printf ("inner loop executing. j = % d \ n", J );
If (I = 15) // although this condition is not true
Goto stop;
}
}
/* This message does not print :*/
Printf ("loop exited. I = % d \ n", I );

Stop: printf ("jumped to stop. I = % d \ n", I); // stop: it is a tag, whether there is a goto jump here,ProgramSequential execution will execute this sentence. In short, it will be executed unconditionally.
Return 0;
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.