Problem
Write a program that will read up to ten letters into an array and write the letters back to the screen in the reverse order. For example, if the input is abcd.
then the output should be
Use a period as a sentinel value to mark the end of the input. Call the array letter Box. For this exercise you need not use any functions. This is just a toy program and can be very minimal.