हिन्दी में वैबसाइट डिजाइनिंग सीखना चाहते हैं तो हमारी साइट code sikho hindi को Subscribe करें

How To Use C++ Language Goto Statement

 C++ Goto Statement -सी++ गोटो स्टेटमेंट

How To Use C++ Language Goto Statement

C++ Language Goto Statement

How To Use C++ Language Goto Statement

सी ++ गोटो स्टेटमेंट को जंप स्टेटमेंट के रूप में भी जाना जाता है। इसका उपयोग प्रोग्राम के दूसरे भाग में नियंत्रण स्थानांतरित करने के लिए किया जाता है। यह बिना शर्त निर्दिष्ट लेबल पर कूद जाता है।


इसका उपयोग डीप नेस्टेड लूप या स्विच केस लेबल से नियंत्रण स्थानांतरित करने के लिए किया जा सकता है।


C++ Goto Statement Example -सी ++ गोटो स्टेटमेंट उदाहरण


आइए C++ में गोटो स्टेटमेंट का सरल उदाहरण देखें।


#include <iostream>  

using namespace std;  

int main()  

{  

ineligible:    

         cout<<"You are not eligible to vote!\n";    

      cout<<"Enter your age:\n";    

      int age;  

      cin>>age;  

      if (age < 18){    

              goto ineligible;    

      }    

      else    

      {    

              cout<<"You are eligible to vote!";     

      }         

}  


Output:-


You are not eligible to vote!

Enter your age:

16

You are not eligible to vote!

Enter your age:

7

You are not eligible to vote!

Enter your age:

22

You are eligible to vote!