Why does C's printf format string have both %c and %s?
I know that %c represents a single character and %s represents a zero-terminated string of characters, but wouldn't the string representation alone be enough?
|
Why does C's printf format string have both I know that |
||||
| show 2 more comments |
|
Probably to distinguish between null terminated string and a character. If they just had
In the above case, |
|||||||||||||||||||||
|
|
If you just have a So you couldn't just print a single character unless it was null-terminated (very inefficent). EDIT: As other have pointed out, the two expect different things in the var args parameters - one a pointer, the other a single char. But that difference is somewhat clear. |
|||||||||
|
|
The issue that is mentioned by others that a single character would have to be null terminated isn't a real one. This could be dealt with by providing a precision to the format What is more important in my view is that for Edit: I am really pissed off by the reaction to this answer, so I will probably delete this, this is really not worth it. It seems that people react on this without even having read the question or knowing how to appreciate the technicality of the question. To make that clear: I don't say that you should prefer |
|||||||||||||||||||||
|
|
The printf function is a variadic function, meaning that it has variable number of arguments. Arguments are pushed on the stack before the function (printf) is called. In order for the function printf to use the stack, it needs to know information about what is in the stack, the format string is used for that purpose. e.g.
whereas
it is not possible inside the printf function to otherwise determine stack contents e.g. distinguishing between 'ch' and 's' because in C there is no type checking during runtime. |
|||||||||||||||
|
|
Using Stealing from the other answers to explain it in a different way. If you wanted to print a character using
|
|||||||||||||||||
|
|
For For If we used the |
||||
|
|
|
Id like to add another point of perspective to this fun question. Really this comes down to data typing. I have seen answers on here that state that you could provide a pointer to the char, and provide a
This could indeed be true. But the answer lies in the C designer's trying to provide flexibility to the programmer, and indeed a (albeit small) way of decreasing footprint of your application. Sometimes a programmer might like to run a series of if-else statements or a switch-case, where the need is to simply output a character based upon the state. For this, hard coding the the characters could indeed take less actual space in memory as the single characters are 8 bits versus the pointer which is 32 or 64 bits (for 64 bit computers). A pointer will take up more space in memory. If you would like to decrease the size through using actual chars versus pointers to chars, then there are two ways one could think to do this within printf types of operators. One would be to key off of the .1s, but how is the routine supposed to know for certain that you are truly providing a char type versus a pointer to a char or pointer to a string (array of chars)? This is why they went with the "%c", as it is different. Fun Question :-) |
|||
|
|
|
C has the A |
|||
|
|
|
%c expects a char, which is an integer value and prints it according to encoding rules. %s expects a pointer to a location of memory that contains char values, and prints the characters in that location according to encoding rules until it finds a 0 (null) character. So you see, under the hood, the two cases while they look alike they have not much in common, as one works with values and the other with pointers. One is instructions for interpreting a specific integer value as an ascii char, and the other is iterating the contents of a memory location char by char and interpreting them until a zero value is encountered. |
|||
|
|
|
Since no one has provided an answer with ANY reference whatsoever, here is a printf specification from pubs.opengroup.com which is similar to the format definition from IBM
|
|||
|
|
|
I have done a experiment with
The result says that using |
|||
|
|
%s, then every single character must also be null terminated. char c = 'a';, in this casecmust be null terminated. This is my assumption though :) – Mahesh Jun 1 '12 at 7:18