How to get the size, the min and the max of unsigned long long Data Type in C++

1 Answer

0 votes
#include <iostream>

using namespace std;

int main()
{
	cout << sizeof(unsigned long long) << endl;
	cout << 0 << endl; // min
	cout << ULLONG_MAX << endl;

	return 0;
}


/*
run:

8
0
18446744073709551615

*/

 



answered Dec 12, 2016 by avibootz
edited Dec 12, 2016 by avibootz

Related questions

...