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

I am working on a 32-bit system. When I try to print more than one 64 bit value in a single printf, then it cannot print any further (i.e. 2nd, 3rd, ...) variable values.

example:

uint64_t a = 0x12345678;
uint64_t b = 0x87654321;
uint64_t c = 0x11111111;

printf("a is %llx & b is %llx & c is %llx",a,b,c);

Why can this printf not print all values?

I am modifying my question

printf("a is %x & b is %llx & c is %llx",a,b,c);

by doing this result is : a is 12345678 & b is 8765432100000000 & c is 1111111100000000

if i am not printing a's value properly then why other's value's are gona change??

share|improve this question
4  
What is the output (or error) that you're getting? – Chris Lutz Jul 27 '11 at 20:22
2  
Actually, it works: ideone.com/um0QL – Vlad Jul 27 '11 at 20:25
You cannot use ll for uint64_t. You can only use ll for long long types. You should use the <inttypes.h> macros! – Kerrek SB Jul 27 '11 at 20:25
When I include your code snippet in a complete program, it produces the expected output. Please provide a minimal, complete sample program along with your expected output and the output you actually see. For an explanation of who to create a minimal complete program, and why that is a useful tool, see sscce.org. – Robᵩ Jul 27 '11 at 20:28
What compiler, os, and compiler options are you using? – Robᵩ Jul 27 '11 at 20:28
show 6 more comments

4 Answers

up vote 3 down vote accepted

You need to use the correct format:

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

int main(void)
{
    uint64_t a = 0x12345678;
    uint64_t b = 0x87654321;
    uint64_t c = 0x11111111;

    printf("a is %#" PRIx64
            " & b is %#" PRIx64
            " & c is %#" PRIx64 "\n",
            a, b, c);
    return EXIT_SUCCESS;
}

Output:

a is 0x12345678 & b is 0x87654321 & c is 0x11111111
share|improve this answer
printf("a is %x & b is %llx & c is %llx",a,b,c); by doing this result is : a is 12345678 & b is 8765432100000000 & c is 1111111100000000 if i am not printing a's value properly then why other's value's are gona change?? – Mr.32 Jul 28 '11 at 5:28

You should use the macros defined in <inttypes.h>

printf("a is %"PRIx64" & b is %"PRIx64" & c is %"PRIx64"\n",a,b,c);

It is ugly as hell but it's portable. This was introduced in C99, so you need a C99 compliant compiler.

share|improve this answer
Since this is accepted, I wonder what the format for PRIx64 is on Xcode 4.1 if it isn't "llx"? – Michael Burr Jul 27 '11 at 20:58
I don't have access to that compiler but if you do, you could try: printf("PRIx64 is %s\n", PRIx64") or the shorter printf("PRIx64 is "PRIx64"\n"); – hexa Jul 27 '11 at 21:03
1  
You are completely right to insist on PRIx64 etc. But my guess of what makes the difference for the OP is just the \n at the end of the format string... – Jens Gustedt Jul 27 '11 at 21:17
@Jens You might be just right :P I added it to my answer without even considering that, I guess it is just reflex :) – hexa Jul 27 '11 at 21:19
In Xcode 4.1, PRIx64 is #define PRIx64 __PRI_64_LENGTH_MODIFIER__ "x" and #define __PRI_64_LENGTH_MODIFIER__ "ll". – Rudy Velthuis Jul 27 '11 at 21:25
show 2 more comments

It prints them all on my computer, but there are three compile time warnings since %llx expects a long long unsigned int.

Are you sure you need to be using 64 bit types though? All three of your hexcodes are only 32 bits. Maybe you could just use 32 bits and do:

unsigned int a = 0x12345678;
unsigned int b = 0x87654321;
unsigned int c = 0x11111111;

printf("a is %x & b is %x & c is %x",a,b,c);

(Or use the stdint equivalent of 32bit unsigned int)

Unless you need them to be 64 bits so you can add more bits to them later.

share|improve this answer

Use:

"%lli" for int64_t
"%llu" for uint64_t
"%llx" for hex
"%llX" for HEX

Have a look inside "inttypes.h".

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.