in reply to Re: Generating characters (0 to 255)
in thread Generating characters (0 to 255)

I must say output of your program is much easier on the the eyes.

Since the character is the last item to be printed in your program, number of spaces it takes could be omitted and still get left justified output by using just printf("%-8.8s\| %-6.6s\| %-4.4s\| %-s\n", ...). Otherwise, empty (unoccupied) spaces are printed after each character (which could potentially interfere w/ copy-paste). What do you think?