Answers for "what can be used intead of float in c++"

C#
2

how to make a float in C++

public float whatYourFloatIsCalled = 0;
public float whatIsYourFloat;
Posted by: Guest on May-04-2020
0

float in c++

float contains less storage than a double. 
float p = 25.0;
double p = 25.0;
Posted by: Guest on July-06-2020

Code answers related to "what can be used intead of float in c++"

C# Answers by Framework

Browse Popular Code Answers by Language