+ 3
What is float ? I can't understand it 😪😕
A beginner in c language
3 Antworten
+ 12
float is a keyword in c that is used to represent decimal point numbers.
5 is an integer but 5.3 is a floating point number.
If you want to store a floating point number in a variable, the variable should be declared as float.
0
Thanks it is very easy to understand me now
0
float is a data type in used to store value in decimal form .
Like 2.445,7.3444 etc