Difference between signed and unsigned integers : unsigned int « Data Types « C++ Tutorial






#include <iostream> 
 
using namespace std; 
 
int main() 
{ 
  short int i;          // a signed short integer 
  short unsigned int j; // an unsigned short integer 
 
  j = 60000;  
  i = j; 
  cout << i << " " << j; 
 
  return 0; 
}
-5536 60000"








2.16.unsigned int
2.16.1.unsigned int and unsigned long
2.16.2.Demonstrates arithmetic operations with unsigned int variables
2.16.3.cin Handles unsigned int Data Types
2.16.4.unsigned int: Subtraction and Integer Overflow
2.16.5.Tests signed and unsigned integers
2.16.6.Difference between signed and unsigned integers