#include <iostream>
#include <string>
usingnamespace std;
int main()
{
string myArray[100] = {"This string goes into the first element", "This string goes into the second element, and so on..."};
cout << myArray[0]; //displays the first element of the array, in this case "This string goes into the first element."
return 0;
}