View Single Post
Old Dec 26th, 2006, 7:20 AM   #4
Eoin
Hobbyist Programmer
 
Eoin's Avatar
 
Join Date: Jun 2006
Location: Ireland
Posts: 152
Rep Power: 3 Eoin is on a distinguished road
Well the following will work:
#include<sstream>
#include<string>

int main(){
std::string s;
std::stringstream ss("A B C");
s = ss.str();
}
Is that want you're looking for?
__________________
Visit my website BinaryNotions.
Eoin is offline   Reply With Quote