What is the output of this C code?
int main() { auto i = 10; const auto int *p = &i; printf("%d\n", i); }
Answer: A
No answer description available for this question.