MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code?#include <stdio.h>#include <math.h> int main() { int n = 10; printf("%f n", log10(n)); return 0; } |
| A. | 10 |
| B. | Compilation Error |
| C. | 2.302585 |
| D. | 1.000000 |
| E. | None of these |
| Answer» E. None of these | |