Waiting for answer This question has not been answered yet. You can hire a professional tutor to get the answer.
Using RECURSION implement a function that prints an array of numbers going backwards and forwards.g you are given 1 2 3 4 5 and the function prints 1...
Using RECURSION implement a function that prints an array of numbers going backwards and forwards. E.g you are given 1 2 3 4 5 and the function prints 1 2 3 4 5 5 4 3 2 1.
thanks!
should use function printFwdBwd(arr, 5)