Answers for "what is a float in programming"

1

what is a float in programming

a float is just like an interger in programming
however it has a decimal point
it is used when more presision is needed
Posted by: Guest on July-20-2020
0

float in c++

float contains less storage than a double. 
float p = 25.0;
double p = 25.0;
Posted by: Guest on July-06-2020

Code answers related to "what is a float in programming"

Browse Popular Code Answers by Language