dollarbulldog
Structural
- Jan 7, 2003
- 58
Dear friends,
I want to calculate numeric (integer/float) to string. How couldI do that? Thanks
I want to calculate numeric (integer/float) to string. How couldI do that? Thanks
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
std::stringstream ss ;
ss << scientific << 5.3*sin(1.23456) ;
cout "The answer is " << ss.str() << endl ;