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

1 Answer

0 votes
#include <iostream>

using namespace std;

int main()
{
	cout << sizeof(unsigned long) << endl;
	cout << 0 << endl; 
	cout << ULONG_MAX << endl;

	return 0;
}


/*
run:

4
0
4294967295

*/

 



answered Dec 12, 2016 by avibootz

Related questions

...