c++ int vs unsigned code example
Example: difference between unsigned and signed int c++
//Difference between unsigned and signed variable types
unsigned int x; //Can hold zero & positive numbers
signed int y; //Can hold negative, zero, and positive numbers