When printing a single character in a C program, must I use "%1s" in the format string? Can I use something like "%c"?
|
yea, %c will print a single char:
also, putchar/putc will work too. From "man putchar":
EDIT: also note, that if you have a string, to output a single char, you need get the character in the string that you want to output. For example:
|
||||
|
|
|
As mentioned in one of the other answers, you can use putc(int c, FILE *stream), putchar(int c) or fputc(int c, FILE *stream) for this purpose. What's important to note is that using any of the above functions is from some to signicantly faster than using any of the format-parsing functions like printf. Using printf is like using a machine gun to fire one bullet. |
|||
|
|
|
Be careful of difference between
|
|||||
|
|
Yes, %c should work http://linux.die.net/man/3/printf |
|||
|
|
|
I am using MS C 6.0 and it does not work. Gives no error either. |
|||||
|
|
|||
|
|