I have wanted to return char*. But my code is like that:
something.str() --> it is returning string
(in stringstream --> string str() const;)
I want to do that return char*
as strstream does.
(strstream -->char* str();)
I am converting my codes to sstream and how can I do?