/** @file printnum.c
* @brief You will modify this file and implement three functions
* @details Your implementation of the functions defined in printnum.h.
*
* @author Your name goes here
*/
#include
#include "printnum.h"
/** @todo Implement based on documentation contained in printnum.h */
char getDigit (int val) {
char ch = '?';
return ch;
}
/** @todo Implement based on documentation contained in printnum.h */
void divRem (int numerator, int divisor, int* quotient, int* remainder) {
}
/** @todo Implement based on documentation contained in printnum.h */
void printNum (int x, int base) {
}