Write a program that 1) writes a couple of blank lines to standard output; 2) writes a prompt to standard output for a line of no more than 100 characters, text terminated by a newline character; 3) inputs a line of text from standard input one character at a time, while and placing the characters into a 1-dimensional array; 4) writes the number of characters read to standard output; 5) write the input text from the array to standard output in reverse order; and 6) writes a couple of blank lines to standard output.