C Programming
mediumQ1
What is the output of: #include <stdio.h> #define MUL(a, b) (a) * (b) int main() { printf("%d", MUL(2 + 3, 4 + 5)); return 0; }
1 / 15
What is the output of: #include <stdio.h> #define MUL(a, b) (a) * (b) int main() { printf("%d", MUL(2 + 3, 4 + 5)); return 0; }