Which part of the program address space is p stored in the following C code?#include int *p;int main(){int i = 0;p = &i;return 0;}

🎲 Try a Random Question  |  Total Questions in Quiz: 113  |  🧠 Study this quiz with Flashcards
This question is part of a full practice quiz:
C Programming Practice Test: Miscellaneous Topics — practice the complete quiz, review flashcards, or try a random question.


Which part of the program address space is p stored in the following C code?<br>#include <stdio.h><br>int *p;<br>int main()<br>{<br>int i = 0;<br>p = &i;<br>return 0;<br>}