Contact: aviboots(AT)netvision.net.il
41,230 questions
53,732 answers
573 users
#include <iostream> using namespace std; int main() { cout << sizeof(long) << endl; cout << LONG_MAX << endl; cout << LONG_MIN << endl; return 0; } /* run: 4 2147483647 -2147483648 */