So i have this value that i simply want to "cout" it
double f = -922337203.6854775808;
std::cout.precision(19);
//cout.setf( std::ios::fixed, std:: ios::floatfield );
cout << f<< endl;
output : -922337203.6854776144
value changes here. Any information can help.