Problem #842 C++ using OBJECT ORIENTED PROGRAMMING

Write a C++ method to display the middle character of a string.

Explanation

Note: a) If the length of the string is odd there will be two middle characters. b) If the length of the string is even there will be one middle character.

Your Solution