Answers for "how to convert float into double in c++ using type casting"

C++
1

double to float c++

double v1 = 20120313.0;
    float v2 = (float) v1;
Posted by: Guest on May-18-2020

Code answers related to "how to convert float into double in c++ using type casting"

Browse Popular Code Answers by Language