Responsive Ads Here

Wednesday, 3 May 2017

Find max value of unsigned integer in any compiler.



#include<iostream>
#include<limits>
using namespace std;
int main()
{
cout<<UINT_MAX;// header file limits is used for UINT_MAX
return 0;
}

No comments:

Post a Comment