I don't know this type. Is that the biggest one from all? I think it is an integer type, right? Or is it a floating point thing? Bigger than double?

link|improve this question

feedback

6 Answers

up vote 9 down vote accepted

Its an integer, at least as big as long.

link|improve this answer
why "long long" ? is it as big as long * long? – openfrog Jan 24 '10 at 15:12
2  
@openfrog no - the C standard states that a long long must be at a minimum at least as big as a long but does not state anything other than that - theoretically a long long could be a 128 bit number or a 256 bit number - it is all implementation dependent – Simon Jan 24 '10 at 15:27
2  
long long must at least be 64 bits – Johannes Schaub - litb Jan 24 '10 at 16:04
Is there any C compiler that actually has a long long type but with a size that is not 64 bits wide? – x4u Jan 24 '10 at 16:32
What, now, or by the time someone reads the comment? ;-) – Steve Jessop Jan 24 '10 at 18:08
feedback

See this for an explanation and example.

link|improve this answer
feedback

A long long is an integer data type, usually 4 or 8 bytes wide depending on the platform. More info wikipedia

link|improve this answer
feedback

According to C99 standard, long long is an integer type which is at least 64-bit wide. There are two integer 64-bit types specified: long long int and unsigned long long int

So, yes, this is the biggest integer type specified by C language standard (C99 version).

There is also long double type specified by C99. It's a double precision floating point numeric data type long for 80-bits on most popular x86-based platforms and implementations of C language.

link|improve this answer
feedback

It's a 64-bit integer on most 64-bit platforms

Source Wikipedia

link|improve this answer
feedback

The short and simple is that a long long is an int that is at least 64 bits wide. The long(hehe) drawn out rationale for this is here. Basically, it is a response to 64 bit architecture and backwards compatibility. And the name long long was deemed the least bad of all possibilities by the standards committee.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.