What is the output of this C code?
int x = 0; void main() { int *ptr = &x; printf("%p\n", ptr); x++; printf("%p\n ", ptr); }
Answer: A
No answer description available for this question.