C++ program to convert decimal number into binary number
This following program converts a decimal number to a binary number. To convert a decimal number into binary,we follow the following steps: Divide the decimal number by 2 and note the remainder Divide the Quotient repeatedly by 2 and note …