Vidyalelo
C Programming · Q217

Pointer

Programming · C Programming · question 217

Q217

What will be the output of the following C code? #include void main() int x = 0; int *ptr = &x; printf("%p ", ptr); ptr++; printf("%p ", ptr);

A.
0xbfd605e8 0xbfd605ec
Answer
B.
0xbfd605e8 0cbfd60520
C.
0xbfd605e8 0xbfd605e9
D.
Run time error

Answer: Option A

Solution

Answer: Option A
No explanation is given for this question Let's Discuss on Board