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