Vidyalelo
C Programming · Q47

Pointer

Programming · C Programming · question 47

Q47

What will be the output of the following program code? #include void main() int i=3, *j, **k; j = &i; k = &j; printf("%d%d%d", *j, **k, *(*k));

A.
444
B.
000
C.
333
Answer
D.
433
E.
Garbage Value

Answer: Option C

Solution

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