I have a string with non-ASCII characters, for example std::string word ("żółć");
or std::string word ("łyżwy");
I need to convert it properly to const char *
in order to call system(my_String_As_A_Const_Char_Pointer);
I'm working on Linux.
How can I do it?