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

What is the difference between %d and %i when used as format specifiers in printf?

share|improve this question

3 Answers

up vote 38 down vote accepted

They are the same when used for output, e.g. with printf, but different when used as input specifier e.g. with scanf, where %d scans an integer as a signed decimal number, but %i allows defaults to decimal but also allows hexadecimal (if preceded by "0x") and octal if preceded by "0".

So "033" would be 27 with %i but 33 with %d.

share|improve this answer

These are identical for printf but different for scanf. For printf, both %d and %i designate a signed decimal integer. For scanf, %d and %i also means a signed integer but %i inteprets the input as a hexadecimal number if preceded by 0x and octal if preceded by 0 and otherwise interprets the input as decimal.

share|improve this answer
Out of curiosity, is there a reason why you dropped my answer from being the selected one? – Jason Dec 12 '09 at 14:03

There isn't any - the two are synonyms.

share|improve this answer
3  
@hqt: why should he? This answer is correct. I don't get you people (downvoters), the question is about printf, not scanf, therefore these answers are correct. Why downvote them? – ybungalobill Jul 11 '12 at 6:35

protected by Richard J. Ross III Jun 20 '12 at 11:58

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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