fork download
  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4.  
  5. class C{
  6. public:
  7. C(string a= "" , int foo=1, char bar=0);
  8. };
  9.  
  10. C::C(string a, int foo, char bar){
  11. cout<<a<<foo<<bar;
  12. }
  13.  
  14.  
  15. int main() {
  16. C c("hi",1,'T');
  17. return 0;
  18. }
Success #stdin #stdout 0s 3428KB
stdin
Standard input is empty
stdout
hi1T