A me string conc = a+ "gg" + c funziona.
Comunque puoi usare std:stringstream.
codice:ostringstream oss; oss << a << "gg" << c << 10 << 2.4; string conc = oss.str();
A me string conc = a+ "gg" + c funziona.
Comunque puoi usare std:stringstream.
codice:ostringstream oss; oss << a << "gg" << c << 10 << 2.4; string conc = oss.str();
This code and information is provided "as is" without warranty of any kind, either expressed
or implied, including but not limited to the implied warranties of merchantability and/or
fitness for a particular purpose.