>FromYourCode();

Source code quote in C++119

 July 15, 2014 am31 11:27
		int multiplyBy10(int number)
		{
			std::stringstream str;
			str << number << '0';
			str >> number;
			return number;
		}

Check similar quotes

Share this quote