Also asked, is Long Long same as long long int?
long and long int both denote the same type, so there is only one type. long is a simple type specifier for the type long int.
Also, how big is a long long int? Long long signed integer type. Capable of containing at least the [−9,223,372,036,854,775,807, +9,223,372,036,854,775,807] range.
Also question is, what is the largest data type in C++?
8 Answers. The biggest standard C++ integer type is long . C has a long long , and C++0x is going to add that as well, and of course you could implement your own custom integer type, perhaps even a BigInt class. But technically speaking, considering the built-in integer types, long is your answer.
What is larger than long long?
A double or long double can typically represent numbers with larger magnitudes than a long long , but often with less precision (e.g., frequently 53 bits vs., 63 bits for a long long). If you want a larger integer type, you'll typically want to use a library.