added nsupdate-gss
[tridge/junkcode.git] / posarg.c
1 #include <stdio.h>
2
3 int main(void)
4 {
5         printf("%*d\n", 3, 12);
6         printf("%2$*1$.*3$f\n", 3, 12.12345, 2);
7         return 0;
8 }