Advertisement
Guest User

2

a guest
Mar 23rd, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. #define _CRT_SECURE_NO_WARNINGS
  2. #include <stdio.h>
  3. #define MULT(a, b) ((a)*(b))
  4. #define SQUARE(a) ((a)*(a))
  5. void main(){
  6. printf("%d", MULT(2 + 3, 3 + 5));
  7. }
  8. //void main(){
  9. // int x = 36 / SQUARE(6);
  10. // printf("%d", x);
  11. //}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement