How do you write a Recursion function ‘string binary(int n)’ that returns a string of 1’s and 0’s which is the binary representation of n.
cout << binary(43) << endl; // should display “101011”
without using the following loops:
-no for loops
-no while loops
-no do-while’s
-no while-do’s
-no for-while’s
-no while-for-do’s
