MCQOPTIONS
 Saved Bookmarks
				| 1. | 
                                    What will be the output of the program? #include #define MAX(a, b) (a > b ? a : b) int main() { int x; x = MAX(3+2, 2+7); printf("%d n", x); return 0; } | 
                            
| A. | 8 | 
| B. | 9 | 
| C. | 6 | 
| D. | 4 | 
| Answer» C. 6 | |