<?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[C++ Anfänger Problem]]></title><description><![CDATA[<p>Hallo,</p>
<p>ich bin kompletter Anfänger im programmieren und habe nun mein erstes Problem.</p>
<p>#include &lt;iostream&gt;<br />
using namespace std;</p>
<p>int main()</p>
<p>{<br />
short x = 100;<br />
cout &lt;&lt; &quot;Der Wert der Zahl betraegt &quot;<br />
&lt;&lt; x &lt;&lt;<br />
&quot;.\n&quot; &lt;&lt;</p>
<p>//cout &lt;&lt; &quot;Test Test Test &quot; &lt;&lt; endl;</p>
<p>//cout &lt;&lt; x + 0.5 &lt;&lt; endl;</p>
<p>return 0;</p>
<p>}</p>
<p>Sobald ich jetzt die Zeile mit &quot;Test Test Test&quot; mit einbinde gibt er folgendes aus.<br />
1: Der Wert der Zahl betraegt 100.<br />
2: 5B98ED48Test Test Test</p>
<p>Meine Frage jetzt, warum gibt er nach dem Zeilenumbruch aufeinmal diese Buchstaben/Zahlen aus?</p>
<p>Danke!</p>
<p>mfg Florian</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/303461/c-anfänger-problem</link><generator>RSS for Node</generator><lastBuildDate>Mon, 10 Aug 2026 11:53:07 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/303461.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 14 May 2012 18:05:25 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to C++ Anfänger Problem on Mon, 14 May 2012 18:05:25 GMT]]></title><description><![CDATA[<p>Hallo,</p>
<p>ich bin kompletter Anfänger im programmieren und habe nun mein erstes Problem.</p>
<p>#include &lt;iostream&gt;<br />
using namespace std;</p>
<p>int main()</p>
<p>{<br />
short x = 100;<br />
cout &lt;&lt; &quot;Der Wert der Zahl betraegt &quot;<br />
&lt;&lt; x &lt;&lt;<br />
&quot;.\n&quot; &lt;&lt;</p>
<p>//cout &lt;&lt; &quot;Test Test Test &quot; &lt;&lt; endl;</p>
<p>//cout &lt;&lt; x + 0.5 &lt;&lt; endl;</p>
<p>return 0;</p>
<p>}</p>
<p>Sobald ich jetzt die Zeile mit &quot;Test Test Test&quot; mit einbinde gibt er folgendes aus.<br />
1: Der Wert der Zahl betraegt 100.<br />
2: 5B98ED48Test Test Test</p>
<p>Meine Frage jetzt, warum gibt er nach dem Zeilenumbruch aufeinmal diese Buchstaben/Zahlen aus?</p>
<p>Danke!</p>
<p>mfg Florian</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2211451</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2211451</guid><dc:creator><![CDATA[PROJECT_X]]></dc:creator><pubDate>Mon, 14 May 2012 18:05:25 GMT</pubDate></item><item><title><![CDATA[Reply to C++ Anfänger Problem on Mon, 14 May 2012 18:14:59 GMT]]></title><description><![CDATA[<p>Habe mein Problem bereits gefunden. Trotzdem danke!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2211456</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2211456</guid><dc:creator><![CDATA[PROJECT_X]]></dc:creator><pubDate>Mon, 14 May 2012 18:14:59 GMT</pubDate></item><item><title><![CDATA[Reply to C++ Anfänger Problem on Mon, 14 May 2012 18:16:37 GMT]]></title><description><![CDATA[<p>Da fehlt ein Semikolon als Abschluss des ersten Ausdrucks (und die &lt;&lt; dort sind zuviel). Es ist aber insgesamt kein Compilerfehler, da man mit einem Stream (wie <code>cout</code> ) auch wieder einen anderen Stream ausgeben kannst (über gewisse Umwandlungen, die später mal sehr wichtig werden, aber hier einen unerwünschten Nebeneffekt haben). Die &quot;5B98ED48&quot; ist das Resultat, wenn du bei dir den Stream <code>cout</code> selbst ausgibst</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2211457</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2211457</guid><dc:creator><![CDATA[SeppJ]]></dc:creator><pubDate>Mon, 14 May 2012 18:16:37 GMT</pubDate></item><item><title><![CDATA[Reply to C++ Anfänger Problem on Mon, 14 May 2012 18:27:25 GMT]]></title><description><![CDATA[<p>SeppJ schrieb:</p>
<blockquote>
<p>Die &quot;5B98ED48&quot; ist das Resultat, wenn du bei dir den Stream <code>cout</code> selbst ausgibst</p>
</blockquote>
<p><a href="http://www.cplusplus.com/reference/iostream/ios/operator_voidpt" rel="nofollow">http://www.cplusplus.com/reference/iostream/ios/operator_voidpt</a><br />
Deswegen?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2211462</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2211462</guid><dc:creator><![CDATA[[[global:guest]]]]></dc:creator><pubDate>Mon, 14 May 2012 18:27:25 GMT</pubDate></item><item><title><![CDATA[Reply to C++ Anfänger Problem on Mon, 14 May 2012 18:27:51 GMT]]></title><description><![CDATA[<p>Ja.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2211463</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2211463</guid><dc:creator><![CDATA[SeppJ]]></dc:creator><pubDate>Mon, 14 May 2012 18:27:51 GMT</pubDate></item></channel></rss>