![[Dept of Engineering]](http://www.eng.cam.ac.uk/images/house_style/engban-s.gif)
<sstream>.
[fontsize=\small,frame=single,formatcom=\color{progcolor}]
#include <iostream>
#include <string>
#include <sstream>
using namespace std;
int main()
{
int i = 7;
string s1 = "He is ";
string s2 = " years old";
ostringstream ostring;
ostring << s1 << i << s2;
cout << "ostring =" << ostring.str() << endl;
return 0;
}