Are there types bigger than long long int in C++?
My compiler is g++.
If you know your number is always going to be positive, you can extend the scope of an int by labeling it as unsigned
int
unsigned
int myNum; // Range is from –2,147,483,648 to 2,147,483,647
unsigned int myNum; // Range is from 0 to 4,294,967,295