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