Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you may not be able to execute some actions.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
hi,
ich habe eine frage,
wie kann man 2 stringvariablen zu einer variable zusammensetzen ?
mfg
der c++ frager
Hallo
#include <string> ... std::string a = "..."; std::string b = "..."; std::string c = a + b;
bis bald akari