Exercise 16 - due at 11:59:00 PM on 10/31/2021 1. Write a C++ program to create a 1000 character Cstring. Then, read in 5 strings of a maximum size of 200 characters from the user. They are delinited by the tab character. Concatenate all the strings together into the first big string. Sample Run: This is the way the world ends. Not wi th a bang but with a whimper The complete string is : This is the way the world ends. Not with a bang but with a whimper 2. Write a C++ function to accept 3 strings and print them in ascending order Sample Run: Green Red Blue Order: Blue Green Red