Keith_S_Thompson

Example for http://stackoverflow.com/q/29872531/827263

Apr 25th, 2015
338
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.10 KB | None | 0 0
  1. int *bar(int x) {
  2.     return &x;
  3. }
  4.  
  5. int *get_max(int x, int y) {
  6.     return x > y ? &x : &y;
  7. }
Add Comment
Please, Sign In to add comment