What will be output of the following “c” code?


Loading

โœช Choose the correct option.

What will be output of the following “c” code?


#include

#define max(a,b) (a>b)? a:b

int main()

{

int a,b; a=3; b=4;

printf("%d",max(a,b));

return 0;

}

A. 3
B. 4
C. 12
D. 0