Q76
What will be the output of the following C code? #include void foo(auto int i); int main() foo(10); void foo(auto int i) printf("%d ", i );
A.
10
B.
Compile time error
AnswerC.
Depends on the standard
D.
None of the mentioned
Answer: Option B
Solution
Answer: Option B
No explanation is given for this question Let's Discuss on Board