vote up 3 vote down star

I declare a variable for a 64 bit counter as :

long long call_count;

What is the format specifier that I should use in print statements?

I tried, %l, %ld, %ll. None seems to be correct.

I use Diab C compiler for compiling my application code to run on pSOS operating system.

flag

74% accept rate

7 Answers

vote up 3 vote down check

According to C99, it should be "%lld" (see, for example,here). If Diab C isn't C99, then you'd have to look at the compiler docs, which I can't seem to find online with a quick Googling.

link|flag
vote up 7 vote down

It's "%lli" (or equivalently "%lld")

link|flag
vote up 2 vote down

Maybe %lld? I think this is the format for gcc, don't know anything about Diab C compiler.

link|flag
%lld is the Standard conversion specifier for long long, Windows is the only one I am aware of that doesn't support this (but they don't support a lot of standards). Also, this is specific to the standard c library being used, not the compiler. – Robert Gamble Jan 20 at 18:17
vote up 1 vote down

isn't it supposed to be %lld?

link|flag
vote up 1 vote down

Microsoft and Watcom use %I64d (capital eye), others use %lld (lowercase ell ell).

link|flag
"use %I64d (capital I)": try again? – Robert Gamble Jan 20 at 18:05
Microsoft uses ll (ell ell) for long long; I64 (eye) for __int64. msdn.microsoft.com/en-us/library/… – Rob Kennedy Jan 20 at 20:22
Clarified. Thanks – Graeme Perrow Jan 20 at 21:27
vote up 0 vote down

It is %lld for signed and %llu for unsigned

link|flag
vote up -1 vote down

did this a long time ago... maybe %L or %Ld worked then. sorry, but i can't test that.

link|flag
L is the length modifier for the long double type – Christoph Jan 20 at 17:59

Your Answer

Get an OpenID
or

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