Is it possible to write a Macro (using token concatenation) that returns format for printf?
E.g.
#define STR_FMT(x) ...code-here...
STR_FMT(10) expands to "%10s"
STR_FMT(15) expands to "%15s"
…
etc.
So that I can use this macro inside a printf:
printf(STR_FMT(10), "*");
You can, but I think it might be better to use the capability
printf()has to specify the field size and/or precision dynamically:This has the advantage of not using the preprocessor and also will let you use variables or functions to specify the field width instead of literals.
If you do decide to use macros instead, please use the
#operator indirectly (and the##operator if you use it elsewhere) like so:Otherwise if you decide to use macros to specify the field width, you’ll get undesired behavior (as described in What are the applications of the ## preprocessor operator and gotchas to consider?).