What will be the output of the following program on GCC compiler?

Loading

โœช Choose the correct option.

What will be the output of the following program on GCC compiler?

#include  
#include
int main() {
float i = 2.5;
printf("%f, %f", floor(i), ceil(i));
return 0;
}

A. 44622
B. 2.000000, 3
C. 2.000000, 3.000000
D. 2, 0