http://kor.i2p/books/The%20C%20Programming%20Language%20by%20K&R/chapter7.html
Table 7.1 Basic Printf Conversions Character Argument type; Printed As d,i int ; decimal number o int ; unsigned octal number (without a
leading zero) x,X int ; unsigned hexadecimal number (without a
leading 0x or 0X ), using abcdef or ABCDEF for 10, ...,15. u int ; unsigned decimal number c int ; single character s char * ; print characters from the string
until a '\0' or the number of characters
given by the...