What is the output of this C code?
int main() { int *ptr, a = 10; ptr = &a; *ptr += 1; printf("%d,%d/n", *ptr, a); }
Answer: D
No answer description available for this question.