Contact: aviboots(AT)netvision.net.il
39,848 questions
51,769 answers
573 users
#include <iostream> using namespace std; int main() { cout << sizeof(float) << endl; cout << FLT_MAX << endl; cout << FLT_MIN << endl; return 0; } /* run: 4 3.40282e+38 1.17549e-38 */