cout: output INT_MIN, INT_MAX and UINT : Int « Data Type « C++






cout: output INT_MIN, INT_MAX and UINT

cout: output INT_MIN, INT_MAX and UINT
 


#include <iostream>
#include <climits>       // Definition of INT_MIN, ...
using namespace std;
int main()
{
  cout << "Range of types int and unsigned int" << endl;
  cout << "Type   Minimum    Maximum" << endl;
  cout << "int" << INT_MIN << "   " <<  INT_MAX << endl;
  cout << "unsigned int" <<  " 0 " << UINT_MAX << endl;
  return 0;
} 


           
         
  








Related examples in the same category

1.Using cin Object to Read Integer Values from Keyboard
2.addition operator in coutaddition operator in cout
3.Define, input and output int valueDefine, input and output int value
4.Computes the lowest common denominator.Computes the lowest common denominator.
5.Inputting int Values for Multiple VariablesInputting int Values for Multiple Variables
6.Divided by intDivided by int
7.Int value operationsInt value operations
8.convert string (char) to int
9.Integer pointer
10.Using atoi: convert string to int