fork download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. float combine(float x1 = 0.0, int x2 = 1.0)
  6. {
  7. return x2 + x1;
  8. }
  9.  
  10. int main()
  11. {
  12. cout << combine() + combine(1.) + combine(2., 3.);
  13. }
  14.  
  15.  
Success #stdin #stdout 0.01s 5280KB
stdin
Standard input is empty
stdout
8