Q55
What would be the output for the following Turbo C code? #include void main() int a[]= 1, 2, 3, 4, 5 , *p; p=a; ++*p; printf("%d ", *p); p += 2; printf("%d", *p);
A.
2 4
B.
3 4
C.
2 2
D.
2 3
AnswerE.
3 3
Answer: Option D
Solution
Answer: Option D
No explanation is given for this question Let's Discuss on Board