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 problem, it does not work at all for the temp variable, just get in result only string testing without 10 in the end?

}

link|improve this question

67% accept rate
does this compile? strstream is defined in <strstream> not <sstream>. – Vijay Mathew Nov 11 '10 at 16:40
feedback

3 Answers

up vote 1 down vote accepted

You should use operator<<() instead, temp << 10;.

link|improve this answer
can u give me example? – Ptichka Nov 11 '10 at 16:44
feedback

The problem looks (to me) like a simple typo. You need to replace: temp>>10; with temp<<10;.

link|improve this answer
think i didnt do this... just some error... it should work but somehow no:( – Ptichka Nov 11 '10 at 16:41
feedback

As you have included sstream, I think you had the ostringstream class in mind.

ostringstream temp;
int i = 10;
temp << i;
string tt = "testing" + temp.str();

To use strstream, include <strstream>. strstream work with char*, which are C strings. Use ostringstream to work with objects of type basic_string.

link|improve this answer
does not help really – Ptichka Nov 11 '10 at 16:38
nope still the same problem, could it be problem in compiler? – Ptichka Nov 11 '10 at 17:15
uhaahaa it works so I am using – Ptichka Nov 11 '10 at 17:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.