What will be output of the following “c” code? June 6, 2022 by admin โช 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. 3B. 4C. 12D. 0 Submit Answer