Write the function reverseit that reverses the characters in a character array. You must
also write main that calls reverseit.
The prototype for reverseit is: void reverseit( char* inputString, char* outputString );
You are to prompt the user for the string to be reversed. Your program should read all
the characters the user enters (which may include spaces and tabs). Pass the user's
string to the reverseit function. Output the reversed character array in main (not in
reverseit).