Programming Reference/Librarys
Question & Answer
Q&A is closed
double
8 Byte
2.3E-308 - 1.7E+308
precision 15
#include <iostream> using namespace std; int main() { cout << "Size of double: " << sizeof(double) << " bytes" << endl; return 0; }