I know the difference between long and int
But What is the difference between “long long” and “long int”
I know the difference between long and int But What is the difference between
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There are several shorthands for built-in types.
shortis (signed)short intlongis (signed)long intlong longis (signed)long long int.On many systems,
shortis 16-bit,longis 32-bit andlong longis 64-bit. However, keep in mind that the standard only requiresAnd a consequence of this is that on an exotic system,
sizeof(long long) == 1is possible.