<?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[anfängerproblem mit COUT]]></title><description><![CDATA[<p>hallo.</p>
<p>ich habe eine problem mit dem einfachsten programm überhaupt. das sieht wie folgt aus:</p>
<pre><code class="language-cpp">#include &lt;conio.h&gt;
#include &lt;iostream&gt;

int main()
{
	cout &lt;&lt; &quot;HELLO\n&quot;;
	_getch();
	return 0;
}
</code></pre>
<p>warum bringt der compiler folgende fehlermeldung:</p>
<blockquote>
<p>error C2065: 'cout': nichtdeklarierter Bezeichner</p>
</blockquote>
]]></description><link>https://www.c-plusplus.net/forum/topic/151321/anfängerproblem-mit-cout</link><generator>RSS for Node</generator><lastBuildDate>Sun, 06 Sep 2026 10:15:33 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/151321.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 25 Jun 2006 09:14:46 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to anfängerproblem mit COUT on Sun, 25 Jun 2006 09:14:46 GMT]]></title><description><![CDATA[<p>hallo.</p>
<p>ich habe eine problem mit dem einfachsten programm überhaupt. das sieht wie folgt aus:</p>
<pre><code class="language-cpp">#include &lt;conio.h&gt;
#include &lt;iostream&gt;

int main()
{
	cout &lt;&lt; &quot;HELLO\n&quot;;
	_getch();
	return 0;
}
</code></pre>
<p>warum bringt der compiler folgende fehlermeldung:</p>
<blockquote>
<p>error C2065: 'cout': nichtdeklarierter Bezeichner</p>
</blockquote>
]]></description><link>https://www.c-plusplus.net/forum/post/1084924</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1084924</guid><dc:creator><![CDATA[Hans Wurst]]></dc:creator><pubDate>Sun, 25 Jun 2006 09:14:46 GMT</pubDate></item><item><title><![CDATA[Reply to anfängerproblem mit COUT on Sun, 25 Jun 2006 09:17:09 GMT]]></title><description><![CDATA[<p>Hallo</p>
<p>cout liegt im namespace std. Du hast nun die Möglichkeit</p>
<pre><code class="language-cpp">std::cout
</code></pre>
<p>zu schreiben, oder unter deine include-Anweisungen folgende Zeile einzufügen:</p>
<pre><code class="language-cpp">using namespace std;
</code></pre>
<p>chrische</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1084925</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1084925</guid><dc:creator><![CDATA[[[global:guest]]]]></dc:creator><pubDate>Sun, 25 Jun 2006 09:17:09 GMT</pubDate></item><item><title><![CDATA[Reply to anfängerproblem mit COUT on Sun, 25 Jun 2006 11:12:45 GMT]]></title><description><![CDATA[<p>oder #include &lt;iostream.h&gt; zu nutzen!<br />
(quelle: c++ in 21 tagen, meine erfahrung <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /> )</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1085007</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1085007</guid><dc:creator><![CDATA[Tuxinator]]></dc:creator><pubDate>Sun, 25 Jun 2006 11:12:45 GMT</pubDate></item><item><title><![CDATA[Reply to anfängerproblem mit COUT on Sun, 25 Jun 2006 11:13:52 GMT]]></title><description><![CDATA[<p>Tuxinator schrieb:</p>
<blockquote>
<p>oder #include &lt;iostream.h&gt; zu nutzen!<br />
(quelle: c++ in 21 tagen, meine erfahrung <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /> )</p>
</blockquote>
<p>Falsch. iostream ist Standard, iostream.h nicht. Dein Buch ist nicht (mehr) korrekt.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1085008</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1085008</guid><dc:creator><![CDATA[LordJaxom]]></dc:creator><pubDate>Sun, 25 Jun 2006 11:13:52 GMT</pubDate></item><item><title><![CDATA[Reply to anfängerproblem mit COUT on Sun, 25 Jun 2006 11:15:46 GMT]]></title><description><![CDATA[<p>tuxinator schrieb:</p>
<blockquote>
<p>quelle: c++ in 21 tagen, meine erfahrung</p>
</blockquote>
<p>Tja, das Buch von dem wohl am öftesten abgeraten wird...</p>
<p>Greetz, Swordfish</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1085011</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1085011</guid><dc:creator><![CDATA[Swordfish]]></dc:creator><pubDate>Sun, 25 Jun 2006 11:15:46 GMT</pubDate></item><item><title><![CDATA[Reply to anfängerproblem mit COUT on Sun, 25 Jun 2006 14:56:01 GMT]]></title><description><![CDATA[<p>ob standart oder nicht, so lange es seinen dienst tut ...<br />
was ist überhaupt an &lt;iostream.h&gt; zu bemängeln, auf dass es nicht mehr standart ist?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1085193</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1085193</guid><dc:creator><![CDATA[Tuxinator]]></dc:creator><pubDate>Sun, 25 Jun 2006 14:56:01 GMT</pubDate></item><item><title><![CDATA[Reply to anfängerproblem mit COUT on Sun, 25 Jun 2006 15:00:57 GMT]]></title><description><![CDATA[<p>naja, woher weißt du, was welche funktion bewirkt, wenn's keinen standard gibt??? beim einen compiler gibt cout text aus, beim andern formatierts vielleicht die festplatte... deshalb bleib doch besser beim standard ^^</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1085200</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1085200</guid><dc:creator><![CDATA[Niklas Cathor]]></dc:creator><pubDate>Sun, 25 Jun 2006 15:00:57 GMT</pubDate></item></channel></rss>