BIT CODES.
Create a program that will ask the user to enter a decimal value (1-999999) then display its
corresponding binary numbers. Repeat this process until the value entered is equal to 0.
Use the following Function Prototype:
void BinCodes(int value);
Sample Input/Output:
Enter a Decimal: 35
Binary: 100011
Enter a Decimal: 184
Binary: 10111000
Enter a Decimal: 0
Don't post homework questions
Those questions are for you to work out, so that you will learn from the experience. It is OK to ask for hints, but not for entire solutions.