Precision indicates the minimum number of digits printed for type integers d, i, o, u, x, and X.
#include <stdio.h> main() { printf("%10.4d\n", 35); }
0035