1.

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. 44
B. 00
C. 33
D. 33
E. arbage Value
Answer» D. 33


Discussion

No Comment Found