+ 1
Is there a way to make dictionaries in C++?
I'm making a text encryptor in C++. How can we do that?
1 Respuesta
+ 10
You can use the std::map. See below for the reference.
http://www.cplusplus.com/reference/map/map/
I'm making a text encryptor in C++. How can we do that?