Take as input str, a number in form of a string. Write a recursive function to convert the number in string form to number in integer form. E.g. for “1234” return 1234. Print the value returned.
First ignore all the whitespaces. Remember the sign by using a sign variable and simply "form" a number by appending the digits encountered. If the number exceeds Integer.MAX_VALUE we return ...