Go back to Richel Bilderbeek's homepage.
Go back to Richel Bilderbeek's C++ page.
long long int is a 64-bit integer data type.
An long long int is a keyword that can be used, depending on the standard used:
long long int is not guaranteed to be 64-bit in the C++98 standard.
#include <iostream> |
Screen output:
Starting /MyFolder/CppLongLongInt... |
long long int is guaranteed to be 64-bit in the C++11 standard.
#include <iostream> |
Screen output:
Starting /MyFolder/CppLongLongInt... |
Technical note: the code shown is compiled successfully using the G++ 4.4.5 compiler, which is supplied with the Qt Creator 2.0.0 IDE.
Go back to Richel Bilderbeek's C++ page.
Go back to Richel Bilderbeek's homepage.