Q171
What will be the output of the following C code? #include int main() auto i = 10; const auto int *p = &i; printf("%d ", i);
A.
10
AnswerB.
Compile time error
C.
Depends on the standard
D.
Depends on the compiler
Answer: Option A
Solution
Answer: Option A
No explanation is given for this question Let's Discuss on Board