What will be the output of the following C++ code?
#include <stdio.h>
#include <math.h>
int main ()
{
printf ("%lf", fabs (-10.6) );
return 0;
}
#include <stdio.h>
#include <math.h>
int main ()
{
printf ("%lf", fabs (-10.6) );
return 0;
}A. 10
B. -10
C. 10.600000
D. -25
Answer: Option C

Join The Discussion