Advertisement
AlexG2230954

Untitled

Aug 13th, 2022
804
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.09 KB | None | 0 0
  1. #define MAX(x, y, r) {\
  2.     int bx = x;\
  3.     int by = y;\
  4.     r = (bx > by) ? bx : by;\
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement