A string is given as input. We have to print the reversed string.For example, the string is "Hi how are you?" and the output should be "?ouy era woh iH" The first solution is we can create a new array and append the characters of the original array, one by one from the end to … Continue reading String Reversal- Coding Problem
String Reversal- Coding Problem