fork download
  1. #include <iostream>
  2.  
  3. int main( void )
  4. {
  5. int i = -123;
  6.  
  7. i = int();
  8.  
  9. std::cout << i << std::endl;
  10.  
  11.  
  12. return( 0 );
  13. }
  14.  
Success #stdin #stdout 0s 2828KB
stdin
Standard input is empty
stdout
0