int

  int    Integer
  4byte*
  signed: -2147483648 - 2147483647
  unsigned: 0 - 4294967295
  

Cpp Sourcecode Example

#include <iostream>
using namespace std;
 
int main() 
{    
 
    cout << "Size of int: " << sizeof(int) << " bytes" << endl;
    return 0;
}