0
Why does the float variable exist if double is twice as precise?
1 Odpowiedź
+ 3
float uses less memory (has smaller size), so when you don't need the wide range of numbers that double covers, you should use float. Sometimes in large projects every byte counts.