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));}
13, 10, 24, 50
50, 13, 24, 13
50, 13, 11, 13
13, 13, 24, 13
50, 13, 24, 50
ANSWER
DOWNLOAD EXAMIANS APP
↑