fork download
  1. #include <iostream>
  2.  
  3. int main()
  4. {
  5. auto a = 11;
  6. std::cout << "hello c++" << a << std::endl;
  7. return ( 0 );
  8. }
  9.  
Success #stdin #stdout 0s 2852KB
stdin
Standard input is empty
stdout
hello c++11