Discussion :: C Preprocessor
-
What will be the output of the following program?
#include<stdio.h>
#define prod(a,b) a*b
void main()
{
int x=3,y=4;
printf("%d", prod(x+2,y-1));
}
Answer : Option C
Explanation :
The macro expands and evaluates to as:
x+2*y-1 => x+(2*y)-1 => 10
Be The First To Comment