”; What is the length of the string “a short string”? #include <iostream> #include <cstring> using namespace std; int main() { char str[] = "a short string" ; cout<< sizeof (str)<<endl; cout<<strlen(str)<<endl; return 0 ; } 7. Define a table of the names of months of the year and the number of days in each month. Write out that table. Do this twice; once using an array of char for the names and an array for the number of days and once using an array of structures, with each structure holding the name of a month and the number of days in it. #include <iostream> #include <string> using namespace std; char *months_of_year[ 13] = { "" ,"January" ,"February" ,"Match" ,"April" ,"May" , "June" ,"July" ,"Auguest" ,"September" ,"October" ,"November" ,"December" };