What is the output ? #define sum(x,y) x+y main() { int i=10, j=20; i=j*sum(i,j)*i; printf("%d", i); }
Reveal answer
Fill a bubble to check yourself
What is the output ? #define sum(x,y) x+y main() { int i=10, j=20; i=j*sum(i,j)*i; printf("%d", i); }