vote up 8 vote down star
#include <stdio.h>

int main() {
unsigned long long int num = 285212672; //FYI: fits in 29 bits
int normalInt = 5;
printf("My number is %d bytes wide and its value is %ul. A normal number is %d.\n", sizeof(num), num, normalInt);
return 0;
}

Output:

My number is 8 bytes wide and its value is 285212672l. A normal number is 0.

I assume this unexpected result is from printing the unsigned long long int. How do you printf an unsigned long long int?

flag

79% accept rate

14 Answers

vote up 13 vote down

Use the ll (el-el) long-long modifier with the u (unsigned) conversion.

printf("%llu", 285212672);
link|flag
Doesn't work on Windows - this is for Linux/UNIX only. – Paul Hargreaves Sep 9 '08 at 18:17
Or to be precise it's for GNU libc, and doesn't work with Microsoft's C runtime. – Mark Baker Oct 8 '08 at 9:35
2  
This isn't a Linux/UNIX thing, the "ll" length modifier was added to Standard C in C99, if it doesn't work in "Microsoft C" then it is because they are not standards compliant. – Robert Gamble Oct 17 '08 at 4:46
Works in Turbo C++ on Windows – Patrick McDonald Feb 21 at 3:43
See? Windows rules! </sarcasm> – Artelius Apr 14 at 4:36
show 2 more comments
vote up 4 vote down

You may want to try using the inttypes.h library that gives you types such as int32t int64t uint64_t etc. You can then use its macros such as:

uint64t x; uint32t y;

printf("x: %"PRId64", y: %"PRId32"\n", x, y);

This is "guaranteed" to not give you the same trouble as long, unsigned long long etc, since you don't have to guess how many bits are in each data type.

link|flag
vote up 2 vote down

Non-standard things are always strange :)

for the long long portion under GNU it's L, ll or q

and under windows I believe it's ll only

link|flag
vote up 1 vote down

@superjoe30: What platform are you on? On ubuntu gutsy, your program (with %llu) gives the following output:

$ gcc -o num num.c
$ ./num 
My number is 8 bytes wide and its value is 285212672. A normal number is 5.

I also get the same output on debian etch. Both machines are 32 bit intels.

link|flag
vote up 1 vote down

That is because %llu doesn't work properly under Windows and %d can't handle 64 bit integers. I suggest using PRIu64 instead and you'll find it's portable to Linux as well.

Try this instead:

#include <stdio.h>
#include <inttypes.h>

int main() {
    unsigned long long int num = 285212672; //FYI: fits in 29 bits
    int normalInt = 5;
    printf("My number is %d bytes wide and its value is %"PRIu64". A normal number is %d.\n", sizeof(num), num, normalInt);
    return 0;
}

Output

My number is 8 bytes wide and its value is 285212672. A normal number is 5.
link|flag
vote up 1 vote down

In Linux it is %llu and in Windows it is %I64u

Although I have found it doesn't work in Windows 2000, there seems to be a bug there!

link|flag
with windows, (or at least, with the microsoft C compiler for windows) there's also %I64d, %I32u, and %I32d – JustJeff Sep 6 at 14:55
vote up 1 vote down

For long long (or __int64) using MSVS, you should use %I64d:

__int64 a;
time_t b;
...
fprintf(outFile,"%I64d,%I64d\n",a,b);    //I is capital i
link|flag
vote up 0 vote down

%llu does not work either. Note that normalInt outputs as 0, instead of 5 as it should.

#include <stdio.h>

int main() {
unsigned long long int num = 285212672; //FYI: fits in 29 bits
int normalInt = 5;
printf("My number is %d bytes wide and its value is %llu. A normal number is %d.\n", sizeof(num), num, normalInt);
return 0;
}

Output:

My number is 8 bytes wide and its value is 285212672. A normal number is 0.
link|flag
vote up 0 vote down

%llu does not work either. Note that normalInt outputs as 0, instead of 5 as it should

@superjoe30: This looks like the %llu is working and printing your unsigned long long int just fine.

it's the %d => normal int which isn't working, which (although I thought %d handled ints just fine, this may change with different compilers etc) you might just need to change to %i

Check the manual for printf for your compiler

link|flag
vote up 0 vote down

@Orion Edwards:

%d is the same as %i, but just to make sure I tried compiling it, and yes, it gives the same results. It is, in fact, the int64 causing problems.

@vzczc:

But I don't want to compile it with 64-bit. It's a 32-bit application.

FYI The code that I have posted here was the output of using gcc.

link|flag
vote up 0 vote down

Well, one way is to compile it as x64 with VS2008

This runs as you would expect:

int normalInt = 5;
unsigned long long int num=285212672;
printf(
"My number is %d bytes wide and its value is %ul.
A normal number is %d \n",
sizeof(num),
num,
normalInt);

For 32 bit code, we need to use the correct __int64 format specifier %I64u. So it becomes.

int normalInt = 5;
unsigned __int64 num=285212672;
printf(
"My number is %d bytes wide and its value is %I64u.
A normal number is %d",
sizeof(num),
num, normalInt);

This code works for both 32 and 64 bit VS compiler.

link|flag
vote up 0 vote down

I just compiled your code ( with %llu ) with gcc and the output was the correct one.

Are you passing any options to the compiler?

link|flag
vote up -1 vote down

std::cout might work for this. (I'm at work and cant test it)

link|flag
That's only in C++. – Lehane Sep 9 '08 at 8:43
vote up -3 vote down

on HPUX machine, I have some other problem.

include

include

void main() { /unsigned long var;/ unsigned long long var; var = 4294967295; printf("Sizeof uint = %d\n",sizeof(var)); printf("var = %"PRIu64"\n",var); }

output:

cc one.c

./a.out

Sizeof uint = 8 var = 18446744073709551615

how is this possible, i have assigned a value to "var" why is it not getting printed?? Please help me.

link|flag

Your Answer

Get an OpenID
or

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