Question: Please give the final answer in short Consider the program below. WHAT IS THE OUTPUT of the program for the following inputs? (You DON'T need
Please give the final answer in short 
Consider the program below. WHAT IS THE OUTPUT of the program for the following inputs? (You DON'T need to show the output of the prompt message.) If you are not confident of an answer, type in, compile and run the program. #include #include int main () {/* main */float input_value; printf ("Input a real number: ''); scanf("%f", &input_value); printf("fabs(%5.2f) = %5.2f ", input_value, fabs(input_value)); printf(" squareroot (fabs(%5.2f)) = %5.2f ", input_value, squareroot (fabs(input_value))); printf("rint (%5.2f) = %5.2f ", input_value, rint(input_value)); printf("rint(fabs(%5.2f)) = %5.2f ", input_value, rint(fabs(input_value))); printf("floor (%5.2f) = %5.2f ", input_value, floor(input_value)); printf("floor(fabs(%5.2f)) = %5.2f ", input_value, floor(fabs(input_value))); printf("ceil (%5.2f) = %5.2f ", input_value, ceil(input_value)); printf("ceil(fabs(%5.2f)) = %5.2f ", input_value, ceil(fabs(input_value)));}/* main */(a) 5.25 (b) -5.25 (c) 5.75 (d) -5.75