Q. Which part of the program address space is p stored in the following C code?
Code:
#include <stdio.h>
int *p;
int main()
{
int i = 0;
p = &i;
return 0;
}
β
Correct Answer: (C)
Bss segment