dev/c/sprintf/sprintf.c

7 lines
92 B
C

#include <stdio.h>
void main (void)
{
printf ("%2$.2d, %1$s", "строка", 2000);
}