How can i print an integer with the help of putchar only. i want to do it without using external storage.
This question was asked in a interview last year.
|
|
Consider using the itoa function (you need to import its library) and then looping through each character in the cstring it generates (use strlen to get the upper bound for this loop) then simply using putchar() on each character. |
|||||||||||
|
|
There was already a question similar to this, there I answered this. It should be easy enough to convert this to a program using putchar only (for example, do something like this:
|
|||
|
|
|
I've just assembled something scary. It's mostly proof-of-concept, it is really scary, works for positive integers only but doesn't use almost no storage. Ah, and the integer can't be too big too, and it can be buggy.
|
|||
|
|
|
When faced with vague requirements on an interview, it's a good idea to express your assumptions. I would take the requirement about only being able to use
If the interviewer then commented that
|
||||
|
Answering this question correctly depends largely on what is meant by "external storage" and "
The above implementation assumes C99 semantics, as described in C99 Section 6.5.5 p6:
However, the ANSI C (C 89) semantics for
Ferruccio's second answer is almost perfect. The problem is that the conversion is not right. The result of
And the solution is now conforming to all ISO C standards. Details can be found here. |
||||
|
|
