Vidyalelo
C Programming · Q85

File Input Output

Programming · C Programming · question 85

Q85

What will be the output of the following C code? #include #include int main() int i = 10; printf("%f ", log10(i)); return 0;

A.
Compile time error
B.
1.000000
Answer
C.
2.302585
D.
None of the mentioned

Answer: Option B

Solution

Answer: Option B
No explanation is given for this question Let's Discuss on Board