Answers for "double float in c++"

C++
3

double to float c++

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

C++ float and double simple example

#include <iomanip>
#include <iostream>
using namespace std;

int main() {
    // Creating a double type variable
    double a = 3.912348239293;

    // Creating a float type variable
    float b = 3.912348239293f;

    // Printing the two variables
    cout << "Double Type Number  = " << a << endl;
    cout << "Float Type Number  = " << b << endl;

    return 0;
}
Posted by: Guest on April-09-2022

Browse Popular Code Answers by Language