Answer to Exercise 3-5, page 64 Solution by Paul Griffiths Write the function itob(n,s,b) that converts the integer n into a base b character representation in the string s . In particular, itob(n,s,16) formats n as a hexadecimal integer in s . /* EX3_5.C ======= Suggested solution to Exercise 3-5 */ #include #include void itob(int n, char s[], int b); void reverse(char s[]); int main(void) { ch..