#include <math.h>
double round(double x);
float roundf(float x);
long double roundl(long double x);
#include <stdio.h>
#include <math.h>
int main()
{
float i=5.4, j=5.6;
printf("round of %f is %f
", i, round(i));
printf("round of %f is %f
", j, round(j));
return 0;
}
float f = 0.5;
round(f);
Code Example |
---|
C :: c printf uint32_t |
C :: console log observable data |
C :: servo motor arduino |
C :: c convert number to string |
C :: print bool c |
C :: how to turn off zsh |
C :: c argv |
C :: get last char string c |
C :: malloc in c |
C :: take long long input in c |
C :: how do you make a copy of a linked list in c |
C :: c if else |
C :: c printing char pointer |
C :: copy string in c |
C :: c sleep milliseconds |
C :: binary tree in c search |
C :: c read file content |
C :: c convert float to string |
C :: typedef vs #define |
C :: how to malloc for matrix in c |
C :: malloc |
C :: c include delay |
C :: fseek function in c |
C :: argparse allow line break |
C :: yum install supervisor amazon linux |
C :: get boolean from localstorage |
C :: rust unit test display |
C :: linear and binary search |
C :: pathlib exclude hidden file |
C :: cocktail sort in c |