Which part of the program address space is p stored in the code given below?
int *p; int main() { int i = 0; p = &i; return 0; }
Answer: C
No answer description available for this question.