Reverse a String
This is a string handling function that that reverse a given string. For example, Good Morning becomes gninroM dooG. The code reads a string into an array, which is no surprise. We could use a temporary “working” string, or an array to achieve the goal. What is a bit different here is that as the string is read in from the… Read More »