Last Update 2012/07/05
0(ゼロ)による左詰めを行います。
(例)
#include <stdio.h>
int main()
{
printf("d変換 %05d\n", 30);
printf("x変換 %05x\n", 30);
return 0;
}
実行結果
d変換 00030
x変換 0001e
© loose-info.com All Rights Reserved.