I have seen in a couple of places that strstream objects are deprecated, but there are also stringstream objects. My compiler has 2 headers <strstream> and <sstream> and I don't know which is which. In light of this, which header should I use to produce more modern code?
I suspect <sstream> is the correct one because if I pull them up side-by-side I can find templates and definitions for various "stringstream" classes in it, but not in <strstream>.
Any insight would be much appreciated.