Is there a function to round a float in C or do I need to write my own?
float conver= 45.592346543;
Would like to round actual value to one decimal place. conver = 45.6
Thanks.
|
1
|
|
|
|
|
|
As Rob mentioned, you probably just want to print the float to 1 decimal place. In this case, you can do something like the following:
If you want to actually round the stored value, that's a little more complicated. For one, your one-decimal-place representation will rarely have an exact analog in floating-point. If you just want to get as close as possible, something like this might do the trick:
I doubt this second example is what you're looking for, but I included it for completeness. If you do require representing your numbers in this way internally, and not just on output, consider using a fixed-point representation instead. |
||||
|
|
|
Just to generalize Rob's answer a little, if you're not doing it on output, you can still use the same interface with I think there is another way to do it, though. You can try EDIT: Also, for floats, you can use |
||
|
|
|
|
Sure, you can use roundf(). If you want to round to one decimal, then you could do something like: |
||||||||||
|
|
|
Don't forget to link with -lm. See also ceil(), floor() and trunc(). |
||||
|