C++ Goto Statement

This C++ program illustrates goto statement. The goto statement transfers control to the location specified by label. The goto statement must be in the same function as the label it is referring, it may appear before or after the label. The program prints numbers 1 to 10 without using any loop.

Here is the source code of the C++ program which illustrates goto statement. The C++ program is successfully compiled and run on a Linux system. The program output is also shown below.

  1. /*
  2.  * C++ Program to illustrate goto statement
  3.  */
  4. #include <iostream>        
  5. using namespace std;
  6.  
  7. int main () {
  8.     int i = 0;
  9.  
  10.     cout << "Printing 1 to 10 without using loop\n";
  11.     repeat:
  12.     cout << ++i << " ";
  13.     if(i != 10)
  14.     	goto repeat;
  15.     cout << "\n";
  16. }

$ gcc test.cpp
$ a.out
Printing 1 to 10 without using loop
1 2 3 4 5 6 7 8 9 10

Sanfoundry Global Education & Learning Series – 1000 C++ Programs.

advertisement
advertisement
If you wish to look at all C++ Programming examples, go to C++ Programs.

If you find any mistake above, kindly email to [email protected]

advertisement
advertisement
Subscribe to our Newsletters (Subject-wise). Participate in the Sanfoundry Certification contest to get free Certificate of Merit. Join our social networks below and stay updated with latest contests, videos, internships and jobs!

Youtube | Telegram | LinkedIn | Instagram | Facebook | Twitter | Pinterest
Manish Bhojasia - Founder & CTO at Sanfoundry
Manish Bhojasia, a technology veteran with 20+ years @ Cisco & Wipro, is Founder and CTO at Sanfoundry. He lives in Bangalore, and focuses on development of Linux Kernel, SAN Technologies, Advanced C, Data Structures & Alogrithms. Stay connected with him at LinkedIn.

Subscribe to his free Masterclasses at Youtube & discussions at Telegram SanfoundryClasses.