#include <stdio.h>void main() { int I=3,j,k; j=&I; k=&j; printf("%d%d%d",*j,k,(*k)); } What is the output of the above program code?
Reveal answer
Fill a bubble to check yourself
#include <stdio.h>void main() { int I=3,j,k; j=&I; k=&j; printf("%d%d%d",*j,k,(*k)); } What is the output of the above program code?