Here's a nice little method to convert an integer to another base. const char charArr[] = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'}; char* ConvertToBase(int num, int base) { int len=0; int n = num; do...