#define ADD(x) x*xmain(){int a=4,b=6,c=7,d=ADD(a+b)*c;printf("d=%d",d);}
d = add(a+b)*c = a+b*a+b*c =4+4*6+6*7 = 4+24+42 = 70