MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the program? #include #include int main() { printf("%f\n", sqrt(36.0)); return 0; } |
| A. | 6 |
| B. | 6 |
| C. | 6 |
| D. | Error: Prototype sqrt() not found. |
| Answer» D. Error: Prototype sqrt() not found. | |