The strstream tag has no wiki summary.
24
votes
4answers
5k views
Why was std::strstream deprecated?
I recently discovered that std::strstream has been deprecated in favor of std::stringstream. It's been a while since I've used it, but it did what I needed to do at the time, so was surprise to hear ...
2
votes
1answer
281 views
How to initialise std::istringstream from const unsigned char* without cast or copy?
I have binary data in a byte sequence described by const unsigned char *p and size_t len. I want to be able to pass this data to a function that expects a std::istream *.
I think I should be able to ...
0
votes
3answers
155 views
strstream in c++
I am writing the code
#include<sstream>
#include<iostream>
using namespace std;
int main(){
strstream temp;
int t =10;
temp>>10;
string tt ="testing"+temp.str();
Have a ...
-4
votes
1answer
31 views
query regarding ostrstream
Firt of all i would like to let all know that ostrstream is deprecated and it should not be used in future.
but my doubt is something else.
the source code of my application has code like below.
...