Answers for "what will a float number evaluate to in c"

0

what is float in c

A float is a number with a decimal point.
Posted by: Guest on February-19-2021
-1

c float to int

# you can cast in c like so
float my_float= 1.446;
int my_int = (int) my_float;
Posted by: Guest on May-29-2020

Browse Popular Code Answers by Language