What will be the output of the program?
#include #include<math.h> int main() { float i = 2.5; printf("%f, %d", floor(i), ceil(i)); return 0; }
Answer: C
No answer description available for this question.