Horje
float max value c++ Code Example
double max value c++
short: min: -32768 max: 32767 int: min: -2147483648 max: 2147483647 long: min: -2147483648 max: 2147483647 float: min: 1.17549e-038 max: 3.40282e+038 double: min: 2.22507e-308 max: 1.79769e+308 long double: min: 2.22507e-308 max: 1.79769e+308 unsigned short: min: 0 max: 65535 unsigned int: min: 0 max: 4294967295 unsigned long: ...
float max value c++
#include <limits>

//...

std::numeric_limits<float>::max();
std::numeric_limits<float>::min();
std::numeric_limits<float>::infinity();
maximum int c++
#include <limits>

int imin = std::numeric_limits<int>::min(); // minimum value
int imax = std::numeric_limits<int>::max(); // maximum value (2147483647)




Cpp

Related
c++ optimization dynamic 2d array Code Example c++ optimization dynamic 2d array Code Example
remove duplicates from vector c++ Code Example remove duplicates from vector c++ Code Example
how to clear screen in C++ console Code Example how to clear screen in C++ console Code Example
c++ create threads Code Example c++ create threads Code Example
how to read a line from the console in c++ Code Example how to read a line from the console in c++ Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11