Q64
What will be the output of the following C code? #include int main() int *p = (int *)2; int *q = (int *)3; printf("%d", p + q);
A.
2
B.
3
C.
5
D.
Compile time error
AnswerAnswer: Option D
Solution
Answer: Option D
No explanation is given for this question Let's Discuss on Board