Q52
Which part of the program address space is p stored in the following C code? #include int *p = NULL; int main() int i = 0; p = &i; return 0;
A.
Code/text segment
B.
Data segment
AnswerC.
Bss segment
D.
Stack
Answer: Option B
Solution
Answer: Option B
No explanation is given for this question Let's Discuss on Board