fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. int i = 555;
  7.  
  8. cout << i << endl;
  9.  
  10. {
  11. int i = 0;
  12. loop: cout << i << endl;
  13. if (++i <= 5) goto loop;
  14. }
  15.  
  16. cout << i << endl;
  17.  
  18. }
Success #stdin #stdout 0s 3296KB
stdin
Standard input is empty
stdout
555
0
1
2
3
4
5
555