Advertisement
Guest User

Untitled

a guest
Jun 13th, 2012
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.17 KB | None | 0 0
  1. inline int baa(); /* definition */
  2.  
  3. int r = 1;
  4. if(r) { inline int baa() { return 2; } /* declaration */ }
  5. else { inline int baa() { return 3; } }
  6. printf("%s", baa());
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement