What will be the output of the following C code?

#include stdio.h
void main()
{
int k = 5;
int *p = &k;
int **m = &p;
**m = 6;
printf("%d\n", k);
}

Posted on by