# include <iostream>
# include <algorithm>
# include <string>
usingnamespace std;
struct name
{
string sentence [100] ; // initialized size
} ;
int main ()
{
name a [100] ;
int counter = 0 , index [1000] ;
while (counter < 2)
{
getline (cin , a[counter].sentence) ; // in order to make this line correct I will need to put the size of the sentence.......what size can I put to make the user enters a line
index [counter] = a[counter].sentence .length () ; // also here too......what size of sentence can I put to get the full length of the string
counter ++ ;
}
}