Code: #include #include int divide (int, int); /*function prototype*/ int remainder (int, int); /*function prototype*/ int reverse (int []); /*function prototype*/ int main () { int value, base, list[20], count = 0; printf("\n** This program facilitates the conversion of a decimal number"); printf("\n to bases 2 through 9 **\n"); while(count<20 && value!=0) { list[count] = remainder (value, base); value = divide ...