Loop Program with goto statement in cpp 2022 - mymixindia.com

Loop Program with Goto Statement in Cpp 2022


Loop Program with Goto Statement in Cpp 2022

//.....Mymixindia.com.......
//.....Loops program with goto statement....
#include<iostream>
using namespace std;

  int main()
  {
    int a=0;


LOOP:do { 
if( a == 15) {
 // skip the iteration.
 a = a + 1; 
goto LOOP;
 }
  cout << "value of a: " << a << endl;
 a = a + 1; 
 } while( a < 20 ); //....set 100 for 0 to 99 iteration...



      return 0;
  }

The output of the above program iteration from 0 to 19

value of a: 0 
value of a: 1 
value of a: 2 
value of a: 3 
value of a: 4 
value of a: 5 
value of a: 6 
value of a: 7 
value of a: 8 
value of a: 9 
value of a: 10
value of a: 11
value of a: 12
value of a: 13
value of a: 14
value of a: 16
value of a: 17
value of a: 18
value of a: 19

The output of the above program iteration from 0 to 99

value of a: 0 
value of a: 1 
value of a: 2 
value of a: 3 
value of a: 4 
value of a: 5 
value of a: 6 
value of a: 7 
value of a: 8 
value of a: 9 
value of a: 10
value of a: 11
value of a: 12
value of a: 13
value of a: 14
value of a: 16
value of a: 17
value of a: 18
value of a: 19
value of a: 20
value of a: 21
value of a: 22
value of a: 23
value of a: 24
value of a: 25
value of a: 26
value of a: 27
value of a: 28
value of a: 29
value of a: 30
value of a: 31
value of a: 32
value of a: 33
value of a: 34
value of a: 35
value of a: 36
value of a: 37
value of a: 38
value of a: 39
value of a: 40
value of a: 41
value of a: 42
value of a: 43
value of a: 44
value of a: 45
value of a: 46
value of a: 47
value of a: 48
value of a: 49
value of a: 50
value of a: 51
value of a: 52
value of a: 53
value of a: 54
value of a: 55
value of a: 56
value of a: 57
value of a: 58
value of a: 59
value of a: 60
value of a: 61
value of a: 62
value of a: 63
value of a: 64
value of a: 65
value of a: 66
value of a: 67
value of a: 68
value of a: 69
value of a: 70
value of a: 71
value of a: 72
value of a: 73
value of a: 74
value of a: 75
value of a: 76
value of a: 77
value of a: 78
value of a: 79
value of a: 80
value of a: 81
value of a: 82
value of a: 83
value of a: 84
value of a: 85
value of a: 86
value of a: 87
value of a: 88
value of a: 89
value of a: 90
value of a: 91
value of a: 92
value of a: 93
value of a: 94
value of a: 95
value of a: 96
value of a: 97
value of a: 98
value of a: 99

The goto statement is woking with do-while loop.

Related Posts:

Pointer Program with Aaary and Function in Cpp 2022

Pointer Program in Cpp 2022

Program to Print Prime Number in CPP 2020

5 Namespace Program in C++ 2022

Constructors Program in Java

Java Data Type Program

HTML Tutorials 

CSS tutorials