News

You can use recursion to reverse the string by recursively calling the function with the substring starting from the second character and then concatenating the first character at the end. Remember ...
STEP2:Define a recursive function reverse_string(s). STEP3:Read a string from the user. STEP4:Call the recursive function with the string. STEP5:Display the reversed string. STEP6:End the program.