Question: C Programming: Write 2 separate functions that convert a binary number to a decimal number and visa verca. These must be recursively defined, and should
C Programming: Write 2 separate functions that convert a binary number to a decimal number and visa verca. These must be recursively defined, and should be able to handle numbers up to 0xFFFF.
int binToDec(int n){
}
long decToBin(long n){
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
