Ask your own question, for FREE!
Computer Science 11 Online
OpenStudy (anonymous):

how to make an array with strings as indexes in c++ ?

OpenStudy (anonymous):

You mean you want something like dictionary or hash table?

OpenStudy (anonymous):

yes a hash table

OpenStudy (anonymous):

Use STL Map class e.g. #include <map> #include <string> using namespace std; map<string, int> stringMapToIntegers; ... stringMapToIntegers["somestring"] = 5;

OpenStudy (anonymous):

Thanks :)

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!