<?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[variabeln]]></title><description><![CDATA[<p>hallo<br />
ich kann das coden noch nicht so gut und bin jetzt erst bei den variabeln und ich habe das problem das in meinem tutorial nicht geschrieben steht was man am anfang einer rechung schreuben muss</p>
<pre><code class="language-cpp">#include &lt;iostream&gt;

using namespace std;

int main (void)

{
   36 = 33+ 3;  // am anfang dieser zeile
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/topic/121152/variabeln</link><generator>RSS for Node</generator><lastBuildDate>Sat, 22 Aug 2026 14:43:24 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/121152.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 20 Sep 2005 12:06:54 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to variabeln on Tue, 20 Sep 2005 12:06:54 GMT]]></title><description><![CDATA[<p>hallo<br />
ich kann das coden noch nicht so gut und bin jetzt erst bei den variabeln und ich habe das problem das in meinem tutorial nicht geschrieben steht was man am anfang einer rechung schreuben muss</p>
<pre><code class="language-cpp">#include &lt;iostream&gt;

using namespace std;

int main (void)

{
   36 = 33+ 3;  // am anfang dieser zeile
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/876550</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/876550</guid><dc:creator><![CDATA[PCfreak]]></dc:creator><pubDate>Tue, 20 Sep 2005 12:06:54 GMT</pubDate></item><item><title><![CDATA[Reply to variabeln on Tue, 20 Sep 2005 12:08:26 GMT]]></title><description><![CDATA[<p>don't feed the troll.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/876551</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/876551</guid><dc:creator><![CDATA[tipp]]></dc:creator><pubDate>Tue, 20 Sep 2005 12:08:26 GMT</pubDate></item><item><title><![CDATA[Reply to variabeln on Tue, 20 Sep 2005 12:09:10 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">int x = 33+ 3;  // am anfang dieser zeile
   cout&lt;&lt;x&lt;&lt;'\n';
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/876553</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/876553</guid><dc:creator><![CDATA[volkard]]></dc:creator><pubDate>Tue, 20 Sep 2005 12:09:10 GMT</pubDate></item><item><title><![CDATA[Reply to variabeln on Tue, 20 Sep 2005 12:09:48 GMT]]></title><description><![CDATA[<p>also das soll heissen?<br />
ich komme immer noch nicht weiter</p>
]]></description><link>https://www.c-plusplus.net/forum/post/876555</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/876555</guid><dc:creator><![CDATA[PCfreak]]></dc:creator><pubDate>Tue, 20 Sep 2005 12:09:48 GMT</pubDate></item><item><title><![CDATA[Reply to variabeln on Tue, 20 Sep 2005 12:10:25 GMT]]></title><description><![CDATA[<p>auf der linken Seite einer Zuweisung darf keine Konstante stehen! 36 ist aber ein unveränderlicher Wert.</p>
<p>Du mußt schreiben:</p>
<p>a = 33 + 3;</p>
<p>dann wird dem Wert a die Summe aus 33 + 3 zugewiesen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/876556</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/876556</guid><dc:creator><![CDATA[nacktermann]]></dc:creator><pubDate>Tue, 20 Sep 2005 12:10:25 GMT</pubDate></item><item><title><![CDATA[Reply to variabeln on Tue, 20 Sep 2005 12:12:37 GMT]]></title><description><![CDATA[<p>Diese &quot;Rechnung&quot; stimmt im mathematischen Sinne, ABER der Computer soll ja was berechnen und sich nicht was ansehen was stimmt.</p>
<pre><code class="language-cpp">#include &lt;iostream&gt;

using namespace std;

int main (void)

{
   int x = 33+ 3;  // am anfang dieser zeile
   cout &lt;&lt;x;
}
</code></pre>
<p>Du weißt das was rechts vom Gleichheitszeichen der Variablen, die links steht zu.<br />
Oder anders gesagt: Der Computer berechnet jetzt 33+3 und packst das Ergebnis in die Variable x.</p>
<p>Diese wird dann ausgegeben.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/876558</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/876558</guid><dc:creator><![CDATA[MisterX]]></dc:creator><pubDate>Tue, 20 Sep 2005 12:12:37 GMT</pubDate></item><item><title><![CDATA[Reply to variabeln on Tue, 20 Sep 2005 12:16:29 GMT]]></title><description><![CDATA[<p>ich habe jetzt die aufgabe bekommen<br />
schreibe ein programm das deinen Namen mit mehren char-Variabeln ausgibt<br />
wie soll ich den das schon wieder machen?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/876564</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/876564</guid><dc:creator><![CDATA[PCfreak]]></dc:creator><pubDate>Tue, 20 Sep 2005 12:16:29 GMT</pubDate></item><item><title><![CDATA[Reply to variabeln on Tue, 20 Sep 2005 19:21:51 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">#include &lt;iostream&gt;
int main(){
   char[] name = &quot;Irgendwer&quot;;

   std::cout &lt;&lt;name;

   return 0;
}
</code></pre>
<p>Also mal erhlich, vielleicht solltest du das Tutorial noch einmal genauer durchlesen. Das da ist nämlich eine absolute Grundlage, so was sollte man schon selber können. Notfalls schau dich nach einem anderen Tutorial an.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/876598</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/876598</guid><dc:creator><![CDATA[Der Knirps]]></dc:creator><pubDate>Tue, 20 Sep 2005 19:21:51 GMT</pubDate></item></channel></rss>