Is it possible to form a format string having nested format character? That is, if I want to specify field width for a long integer with some width which in turn specified by an integer. See the illustration below
printf("%%dld", integer, long_integer);
Of course, it's a bad idea, but I want to know if there is any other way to perform something similar to this?