What will be output of this code? 
void main()
{
int k=5;
int *p=&k;
int **m=&p;
printf("%d%d%d\n", k, *p, **p) ;
}

Posted on by