Advertisement
Guest User

Untitled

a guest
Feb 28th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.13 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2.  
  3. using namespace std;
  4.  
  5. void f(int x, int y = 7);
  6. void f(int x = 5, int y);
  7.  
  8. int main() {
  9.     //f(3, 6);
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement