Home » C Programming » Floating Point Issues

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

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!