Advertisement
Guest User

Untitled

a guest
Jul 12th, 2018
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. void f();
  2. struct o{};
  3. int main() {
  4.  
  5. // f();
  6. // f(12);
  7. // f(12.0);
  8. // f(12,42);
  9. };
  10.  
  11. void f(int a){printf("int\n");}
  12. // void f(float f){printf("float\n");}
  13. void f(struct o obj){printf("obj\n");}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement