fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main () {
  5. // for loop execution
  6. for( int a = 10; a < 20; a++ ) {
  7. cout << "value of a: " << a << endl;
  8. }
  9.  
  10. return 0;
  11. }
Success #stdin #stdout 0s 16064KB
stdin
Standard input is empty
stdout
value of a: 10
value of a: 11
value of a: 12
value of a: 13
value of a: 14
value of a: 15
value of a: 16
value of a: 17
value of a: 18
value of a: 19