logo CodeStepByStep logo

printAllBinary

Language/Type: C++ backtracking recursion

Write a recursive function named printAllBinary that accepts an integer number of digits and prints all binary numbers that have exactly that many digits, in ascending order, one per line. For example, the call of printAllBinary(3); should print:

000
001
010
011
100
101
110
111

If the number of digits passed is 0 or negative, print no output. Your function must use recursion; do not use any loops.

Function: Write a C++ function as described, not a complete program.

You must log in before you can solve this problem.

Log In

Need help?

Stuck on an exercise? Contact your TA or instructor.

If something seems wrong with our site, please

Is there a problem? Contact us.