2. What will be the output of the following program? #define MAX(x,y) (x>y? x:y) maino { int i; i=MAX(6+4,8-2); printf("%d",i); }
Answers
Answered by
0
Answer:
10
Explanation:
may be it prints 10 on screen
Similar questions