Select your favorite printf conversion from this list: %c, %d, %s, %x, %%. Give an example of a printf call using that conversion, and write one or more putchar statements having the same effect as the printf call. My favorite isn't on the list: it's %o. printf("%o",8) has the same effect as putchar('1'); putchar('0').