Vector Help.

I need help with this. Why have the begginging of an parameters name as a vector string. Like so

 
 vector <string> here ( string Help, string Me,)


Someone answer my question
vector is a class template. you can read about them on this page http://www.cplusplus.com/doc/tutorial/templates/
The bit inside the <>s names the type that the vector can store. e.g int, double, float, std::string, std::vector, ect
Last edited on
Topic archived. No new replies allowed.