I need to align a series of numbers in C with printf() like this example:
-------1 -------5 ------50 -----100 ----1000
Of
printf("%8d\n",1); printf("%8d\n",10); printf("%8d\n",100); printf("%8d\n",1000);