Top

Discussion

What is the output of the code below?

int main()
{
int i = 10;
int *const p = &i;
foo(&p);
printf("%d\n", *p);
}
void foo(int **p)
{
int j = 11;
*p = &j;
printf("%d\n", **p);
}

 

  • A.11   11
  • B.Undefined behaviour
  • C.Compile time error
  • D.Segmentation fault/code-crash

Answer: A

No answer description available for this question.
 

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

Post your comment