Vidyalelo
C Programming · Q187

Function

Programming · C Programming · question 187

Q187

What will be the output of the following C code? #include #define A 1 + 2 #define B 3 + 4 int main() int var = A * B; printf("%d ", var);

A.
9
B.
11
Answer
C.
12
D.
21

Answer: Option B

Solution

Answer: Option B
No explanation is given for this question Let's Discuss on Board