Answers for "how to round up a number in c"

C
2

rounding decimal number in C

#include <stdio.h>
#include <math.h>
 int main()
{
       float i=5.4, j=5.6;
       printf("round of  %f is  %f\n", i, round(i));
       printf("round of  %f is  %f\n", j, round(j));
       return 0;
}
Posted by: Guest on July-30-2021

Code answers related to "how to round up a number in c"

Code answers related to "C"

Browse Popular Code Answers by Language