round example in c language

round example in c language
refer‮‬ to:lautturi.com
#include <stdio.h>
#include <math.h>
 int main()
{
       float i=6.4, j=6.6;
       printf("round of  %f is  %f\n", i, round(i));
       printf("round of  %f is  %f\n", j, round(j));
       return 0;
}
Created Time:2017-08-29 10:24:39  Author:lautturi