#define prod(a,b) a*bmain() { int x=3,y=4; printf("%d",prod(x+2,y-1));}Answer:10Explanation: The macro expands and evaluates to as: x+2*y-1 => x+(2*y)-1 => 10