fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int fun(long a, long b = 1) {
  5. return a << b;
  6. }
  7.  
  8. int fun(int a, char b = 'z') {
  9. return b - a;
  10. }
  11.  
  12. int fun(float a, float b = 0) {
  13. return a * b;
  14. }
  15.  
  16. int main() {
  17. cout << fun(1L) << fun('x') << fun(2e0f);
  18. return 0;
  19. }
  20.  
  21.  
Success #stdin #stdout 0.01s 5296KB
stdin
Standard input is empty
stdout
220