Answers for "what is a float in c"

2

what is float in c

float: It is used to store decimal numbers (numbers with floating point value) with single precision. double: It is used to store decimal numbers (numbers with floating point value) with double precision.
Posted by: Guest on March-03-2021
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
0

what is float in c

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

Browse Popular Code Answers by Language