Vidyalelo
C Programming · Q171

Function

Programming · C Programming · question 171

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