Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

6 Answers

up vote 11 down vote accepted

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.

share|improve this answer

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

share|improve this answer

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

share|improve this answer
"use %I64d (capital I)": try again? – Robert Gamble Jan 20 '09 at 18:05
2  
Microsoft uses ll (ell ell) for long long; I64 (eye) for __int64. msdn.microsoft.com/en-us/library/tcxf1dw6.aspx – Rob Kennedy Jan 20 '09 at 20:22
Clarified. Thanks – Graeme Perrow Jan 20 '09 at 21:27

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

share|improve this answer
%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 '09 at 18:17

isn't it supposed to be %lld?

share|improve this answer

It is %lld for signed and %llu for unsigned

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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