<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[string variablen zusammensetzen]]></title><description><![CDATA[<p>hi,</p>
<p>ich habe eine frage,</p>
<p>wie kann man 2 stringvariablen zu einer variable zusammensetzen ?</p>
<p>mfg</p>
<p>der c++ frager</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/162864/string-variablen-zusammensetzen</link><generator>RSS for Node</generator><lastBuildDate>Sat, 12 Sep 2026 20:00:21 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/162864.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 23 Oct 2006 21:04:50 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to string variablen zusammensetzen on Mon, 23 Oct 2006 21:04:50 GMT]]></title><description><![CDATA[<p>hi,</p>
<p>ich habe eine frage,</p>
<p>wie kann man 2 stringvariablen zu einer variable zusammensetzen ?</p>
<p>mfg</p>
<p>der c++ frager</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1159955</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1159955</guid><dc:creator><![CDATA[der c++ frager]]></dc:creator><pubDate>Mon, 23 Oct 2006 21:04:50 GMT</pubDate></item><item><title><![CDATA[Reply to string variablen zusammensetzen on Mon, 23 Oct 2006 21:23:44 GMT]]></title><description><![CDATA[<p>Hallo</p>
<pre><code class="language-cpp">#include &lt;string&gt;
...
std::string a = &quot;...&quot;;
std::string b = &quot;...&quot;;
std::string c = a + b;
</code></pre>
<p>bis bald<br />
akari</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1159966</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1159966</guid><dc:creator><![CDATA[akari]]></dc:creator><pubDate>Mon, 23 Oct 2006 21:23:44 GMT</pubDate></item></channel></rss>