Top

Discussion

Which part of the program address space is p stored in the code given below?

int *p = NULL;
    int main()
    {
        int i = 0;
        p = &i;
        return 0;
    }

 

  • A.Code/text segment
  • B.Data segment
  • C.Bss segment
  • D.Stack

Answer: B

No answer description available for this question.

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

Post your comment