Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
How to printf “unsigned long” in C?

I have my number like so...

int unsigned long number = 600851475143;

I am trying to print it with printf(). Every time I try, I get a warning by the compiler.

I've tried %uld, %ld and Googling hasn't seemed to find me the answer.

I'm learning C, but have not had to use a long int before, so I'm not sure what I should be using.

What is the specifier I am chasing?

Thanks.

Update

I realised this is a duplicate. Feel free to vote to close, I just did.

share|improve this question

marked as duplicate by alex, DeadMG, leppie, Mike DeSimone, Aamir Oct 27 '10 at 12:49

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

I recommend using standard order (i.e. unsigned long int). %lu is the format tag you're looking for.

printf("%lu", 5ul);
share|improve this answer
Sorry, I didn't know there was a conventional order. Thanks for letting me know. – alex Oct 27 '10 at 12:17
    int unsigned long number = 600851475143LU;
    printf( "%lu", number );

prints 600851475143

share|improve this answer
don't forget to add L to end of that integer. – Matt Joiner Oct 27 '10 at 12:43
Argh, yep.. Thanks for the remark. I just copied it from the posted question. – Kiril Kirov Oct 27 '10 at 12:45

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