Top

Discussion

What is the output of this C code?

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

 

  • A.5   5   5
  • B.5  5 junk value
  • C.5 junk value
  • D.Run time error

Answer: A

No answer description available for this question.
 

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

Post your comment