Top

Discussion

What will be the output of the following C code?

#include 
    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