int x;
printf("hello %n World\n", &x);
printf("%d\n", x);
|
2
|
|||||||
|
|
|
It's not so useful for
|
||
|
|
|
|
Depends what you mean by practical. There are always other ways to accomplish it (print into a string buffer with s[n]printf and calculate the length, for example). However
should produce
(although untested, I'm not near a C compiler) Which is just about practical as a way of aligning things, but I wouldn't want to see it in code. There are better ways of doing it. |
||||
|
|
|
It's fairly esoteric. If you need to replace a placeholder in the generated string later you might want to remember an index into the middle of the string, so that you don't have to either save the original printf parameter or parse the string. |
||
|
|
|
|
It can be used to perform evil deeds. |
||
|
|
|
|
#include int main(int argc, char* argv[]) { int col10 = (10 - 1); int col25 = (25 - 1);
I am missing something here for sure. Tomatos is too far to the right. |
||||
|
|
|
maybe a quick way to get the lengths of various substrings? |
||
|
|
|
|
Here's something from the VS2005 CRT code:
which brings up this:
for the following line:
I'm guessing this is mainly to avoid what @eJames is talking about |
||
|
|

