Q275
What will be the output of the following C code? #include int main() int i = 10; int *p = &i; printf("%d ", *p++);
A.
10
AnswerB.
11
C.
Garbage value
D.
Address of i
Answer: Option A
Solution
Answer: Option A
No explanation is given for this question Let's Discuss on Board