Consider the following program, where are i, j and k are stored in memory?
int i; int main() { int j; int *k = (int *) malloc (sizeof(int)); }
Answer: C
No answer description available for this question.