

MCQOPTIONS
Saved Bookmarks
1. |
Which of the following is the correct output for the program given below?#include <stdio.h>#include <math.h>int main ( ){ printf ( "%f n" ,sqrt (49.0)); return 0 ;} |
A. | 7.0 |
B. | 7 |
C. | 7.000000 |
D. | Error : Prototype of sqrt ( ) not found |
Answer» D. Error : Prototype of sqrt ( ) not found | |