fork(1) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. int e = 10;
  7. int v = 12;
  8.  
  9. //declaration of all the required variable used below
  10. for(int g=0;g<e;g++)
  11. {
  12. //some code here
  13. }
  14.  
  15. for(int i=0;i<e;i++)
  16. {
  17. //some code here
  18. }
  19.  
  20. for(int k=1;k<v;k++)
  21. {
  22. //some code here
  23. }
  24.  
  25.  
  26. cout << endl << "reaching here" << endl;
  27.  
  28. for(int k=0;k<v;k++)
  29. {
  30. //some code here
  31. }
  32.  
  33. cout << endl << "not printing this line" << endl;
  34.  
  35. return 0;
  36. }
Success #stdin #stdout 0s 3296KB
stdin
Standard input is empty
stdout
reaching here

not printing this line