Vidyalelo
C Programming · Q76

Function

Programming · C Programming · question 76

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
Answer
C.
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