Guest User

Untitled

a guest
Jul 19th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.10 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. #define MULTI(x) (x * 2)
  4.  
  5. int main() {
  6. printf("%d \n", MULTI(3 + 3));
  7. return 0;
  8. }
Add Comment
Please, Sign In to add comment