Exercise 25 - due at 11:59:00 PM on 11/04/2021 You can solve both problems in the same program 1. Write a C++ program to declare an array of 8 C++ string objects. Read in 8 strings. Then, print all the strings that have fewer than 10 characters. Sample Run: Enter 8 strings: This is a practice problem Sample String Tacos Watermelon Taffy Patrick 3295 62 Rectangle I need coffee The short strings are: Tacos Patrick 3295 62 Rectangle 2. Write a C++ program that creates a pointer to a double variable. Read in a double into the variable by dereferencing the pointer. Sample Run: Enter a number: 5.9 The number entered was 5.9