Define an array of strings and initialize every other element to "widget". Elements not initialized to "widget" should be initialized by the default constructor.
How would I do this? The only way to initialize an array is with the default constructor. I was thinking about doing something like this, but wasn't sure if this would be valid:
string strings[3] = {string(), string ("widget"), string()};
}before;.