MCQOPTIONS
Saved Bookmarks
| 1. |
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 |
| E. | Compilation Error |
| Answer» C. 12 | |