Q242
What will be the output of the following C code? #include int main(void) int num[15]; int *p1=&num['a'], *p2=&num['A']; ptrdiff_t d = p1-p2; printf("%d", d);
A.
15
B.
-32
C.
32
AnswerD.
error
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board