Answers for "how to convert double to float"

C#
5

C# Cast double to float

double double_Num = 42.0349384093;
float float_Num = (float)dNum;

By Barry Cox
Posted by: Guest on March-18-2020
1

java double to float

double d = getInfoValueNumeric();
float f = (float)d;
Posted by: Guest on September-06-2020

Code answers related to "how to convert double to float"

C# Answers by Framework

Browse Popular Code Answers by Language