Top

Discussion

What is the output of this C code?

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

 

  • A.5
  • B.Compile time error
  • C.6
  • D.Junk

Answer: C

No answer description available for this question.
 

No comment is present. Be the first to comment.
Loading…

Post your comment