C Programming
What will be the output of the following program?#include#define prod(a,b) a*bvoid main(){ int x=3,y=4; printf("%d", prod(x+2,y-1));}

11
10
15
12
None of these

ANSWER DOWNLOAD EXAMIANS APP

C Programming
A preprocessor command

need not start on a new line
need not start on the first column
has # as the first character
comes before the first executable statement

ANSWER DOWNLOAD EXAMIANS APP