#includestdio.h
Void main()
{
int i = 3, *j,**k;
j= &i;
k = &j;
printf("%d%d%d",*j,**k,*(*k));
}
Determine the output.

Posted on by