2 July 03, 2013 Get link Facebook X Pinterest Email Other Apps #include<stdio.h> #define prod(a,b) a*b int main () { int x=3,y=4,z; z=prod(3+2,y-1); printf(":%d",z); } Solution: 10...but not 15,bcoz compiler'll take it as 3+2*4-1 = 10 but not same as (3+2)*(4-1) Comments
Comments
Post a Comment