Computer Science 101

Write a recursive function which takes a string and prints it in reverse. For example, if your function is called printStringBackwards then printStringBackwards( “abcdef”, 6 ) should print fedcba. Note: my function actually takes a third argument: the current position in the string. ................
................