What will the output of the following programe code ?# include<stdio.h> void main() { int i= 3,*j,**k;j=&i;k=&j ; printf ("%d%d%d",*j,**k,*(*k)
Answers
Answered by
0
Explanation:
no output will be shown because question is wrongp
Similar questions