Possible Duplicate:
Convert string to variable name or variable type
How to use the string value as a variable name in c++
string listName = "hari";
string vectorName = "BF_vector_"+listName;
vector<string> vectorName;
vectorName.push_back("Some Value");
How to use the string value("BF_vector_hari") of vectorName as a variable name of vector.? Thanks in advance.