/* Suzuki October 8 2007 How to use stringstream */ #include #include // to convert from float to string using namespace std; int main() { string str; stringstream ss; float x = 1.002; int y = 12; char ch = '.'; // build the string stream ss <<"Float "<< x <<" int "<