fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5.  
  6. int i_local; // automatic storage duration, not static
  7.  
  8. cout << "Value of i_local: " << i_local << endl; // (2-3) value is undetermined
  9.  
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 3140KB
stdin
Standard input is empty
stdout
Value of i_local: 0