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