Home » C Programming » Library Functions

What will be the output of the program? #include<stdio.h> #include<math.h> int main() { float i = 2.5; printf("%f, %d", floor(i), ceil(i)); return 0; }

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!