I have a few words to be initialized while declaring a string set.
...
using namespace std;
set<string> str;
/*str has to contain some names like "John", "Kelly", "Amanda", "Kim".*/
I don't want to use str.insert("Name");
each time.
Any help would be appreciated.