Vidyalelo
C Programming · Q275

C Fundamentals

Programming · C Programming · question 275

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
Answer
B.
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