fork download
  1. #include <stdio.h>
  2.  
  3. #define m1(a,b,c) a*b+c
  4. #define m2(x) m1( (x), (x)*3, (x)*2)
  5.  
  6. int main()
  7. {
  8. int a;
  9. a=m2(m1(3,2,1));
  10. printf("%d\n", a);
  11. return 0;
  12. }
Success #stdin #stdout 0s 2160KB
stdin
Standard input is empty
stdout
161