Are there types bigger than long long int in C++?
My compiler is g++.
No, but you can use libraries like GMP to handle bigger numbers.
__int128 __uint128
__int128
__uint128
you can check out BigInt class... http://sourceforge.net/projects/cpp-bigint/
(There are many other BigInts out there...)