<?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[&amp;lt;iostream&amp;gt; kann nicht eingebunden werden]]></title><description><![CDATA[<p>Hallo,</p>
<p>ich habe gerade auf nem Windows-PC CodeBlocks installiert und wollte ein einfaches Testprogramm laufen lassen um zu sehen, ob alle funktioniert. Code:</p>
<pre><code>#include &lt;iostream&gt;

int main()
{

return 0;
}
</code></pre>
<p>doch der Compiler gibt aus: error: iostrea: no such file or dictionary</p>
<p>was mach ich falsch? Danke schon mal!</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/305295/lt-iostream-gt-kann-nicht-eingebunden-werden</link><generator>RSS for Node</generator><lastBuildDate>Sun, 09 Aug 2026 01:15:08 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/305295.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 25 Jun 2012 18:38:59 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to &amp;lt;iostream&amp;gt; kann nicht eingebunden werden on Mon, 25 Jun 2012 18:38:59 GMT]]></title><description><![CDATA[<p>Hallo,</p>
<p>ich habe gerade auf nem Windows-PC CodeBlocks installiert und wollte ein einfaches Testprogramm laufen lassen um zu sehen, ob alle funktioniert. Code:</p>
<pre><code>#include &lt;iostream&gt;

int main()
{

return 0;
}
</code></pre>
<p>doch der Compiler gibt aus: error: iostrea: no such file or dictionary</p>
<p>was mach ich falsch? Danke schon mal!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2227124</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2227124</guid><dc:creator><![CDATA[ProProphet]]></dc:creator><pubDate>Mon, 25 Jun 2012 18:38:59 GMT</pubDate></item><item><title><![CDATA[Reply to &amp;lt;iostream&amp;gt; kann nicht eingebunden werden on Mon, 25 Jun 2012 18:53:43 GMT]]></title><description><![CDATA[<p>Wenn er tatsächlich</p>
<blockquote>
<p>error: <strong>iostrea</strong>: no such file or dictionary</p>
</blockquote>
<p>ausgibt, ist das Problem leicht zu identifizieren...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2227131</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2227131</guid><dc:creator><![CDATA[Caligulaminus]]></dc:creator><pubDate>Mon, 25 Jun 2012 18:53:43 GMT</pubDate></item><item><title><![CDATA[Reply to &amp;lt;iostream&amp;gt; kann nicht eingebunden werden on Mon, 25 Jun 2012 18:57:53 GMT]]></title><description><![CDATA[<p>iostream meinte ich, sry, Tippfehler... Problem ist also nicht SO einfach <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/2227136</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2227136</guid><dc:creator><![CDATA[ProProphet]]></dc:creator><pubDate>Mon, 25 Jun 2012 18:57:53 GMT</pubDate></item><item><title><![CDATA[Reply to &amp;lt;iostream&amp;gt; kann nicht eingebunden werden on Mon, 25 Jun 2012 19:02:29 GMT]]></title><description><![CDATA[<p>Seltsam, hast du schon probiert, andere header zu includieren? vector, list und so was?</p>
<p>gruß<br />
syntax</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2227140</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2227140</guid><dc:creator><![CDATA[Syntax_error]]></dc:creator><pubDate>Mon, 25 Jun 2012 19:02:29 GMT</pubDate></item><item><title><![CDATA[Reply to &amp;lt;iostream&amp;gt; kann nicht eingebunden werden on Mon, 25 Jun 2012 19:33:34 GMT]]></title><description><![CDATA[<p>Dann passiert das gleiche. Benutze ich</p>
<pre><code>using namespace std;
</code></pre>
<p>kommt zusätzlich die Meldung:</p>
<pre><code>error: expected '=', ',', ';', 'asm' or '__attribute__' before 'namespace'
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/2227158</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2227158</guid><dc:creator><![CDATA[ProProphet]]></dc:creator><pubDate>Mon, 25 Jun 2012 19:33:34 GMT</pubDate></item><item><title><![CDATA[Reply to &amp;lt;iostream&amp;gt; kann nicht eingebunden werden on Mon, 25 Jun 2012 19:48:57 GMT]]></title><description><![CDATA[<p>Das hört sich definitiv danach an, dass du den Compiler falsch installiert hast. Hol dir den neuesten <a href="http://sourceforge.net/projects/mingw/files/latest/download" rel="nofollow">MinGW</a>, installiere ihn, und ändere den Pfad bei den Toolchain-Executables (<em>Settings -&gt; Compiler and Debugger -&gt; Reiter &quot;Toolchain Executables&quot; -&gt; erstes Eingabefeld</em>) zu dem von dir installierten MinGW (also bspw. C:/MinGW).</p>
<p>Außerdem gehört das verschoben, ts ts!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2227165</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2227165</guid><dc:creator><![CDATA[Sone]]></dc:creator><pubDate>Mon, 25 Jun 2012 19:48:57 GMT</pubDate></item><item><title><![CDATA[Reply to &amp;lt;iostream&amp;gt; kann nicht eingebunden werden on Mon, 25 Jun 2012 19:52:21 GMT]]></title><description><![CDATA[<p>Hacker schrieb:</p>
<blockquote>
<p>Das hört sich definitiv danach an, dass du den Compiler falsch installiert hast. Hol dir den neuesten <a href="http://sourceforge.net/projects/mingw/files/latest/download" rel="nofollow">MinGW</a>, installiere ihn, und ändere den Pfad bei den Toolchain-Executables (<em>Settings -&gt; Compiler and Debugger -&gt; Reiter &quot;Toolchain Executables&quot; -&gt; erstes Eingabefeld</em>) zu dem von dir installierten MinGW (also bspw. C:/MinGW).</p>
<p>Außerdem gehört das verschoben, ts ts!</p>
</blockquote>
<p>Das hört sich eher nach gar nicht installiert an. Hatte ich mal mit Eclipse, hab vergessen MinGW herunterzuladen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2227168</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2227168</guid><dc:creator><![CDATA[IrgendeinName]]></dc:creator><pubDate>Mon, 25 Jun 2012 19:52:21 GMT</pubDate></item><item><title><![CDATA[Reply to &amp;lt;iostream&amp;gt; kann nicht eingebunden werden on Mon, 25 Jun 2012 19:52:35 GMT]]></title><description><![CDATA[<p>Bei einigen Compilern kann es sein das noch Konfigurationsdateien erstellt oder editiert werden müssen.</p>
<p>Kannst du deinen Compiler auf Kommandozeile starten?</p>
<p>Wenn nicht versuche heraus zu bekommen, warum.</p>
<p>Diese Version sollte, wenn du einen MinGW installieren möchtest, relativ einfach sein:<br />
<a href="http://tdm-gcc.tdragon.net/download" rel="nofollow">http://tdm-gcc.tdragon.net/download</a></p>
<p>MfG f.-th.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2227169</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2227169</guid><dc:creator><![CDATA[f.-th.]]></dc:creator><pubDate>Mon, 25 Jun 2012 19:52:35 GMT</pubDate></item><item><title><![CDATA[Reply to &amp;lt;iostream&amp;gt; kann nicht eingebunden werden on Mon, 25 Jun 2012 20:37:47 GMT]]></title><description><![CDATA[<p>Hab den Fehler: CodeBlock installiert den Compiler eigentlich mit, Problem ist vermutlich nur, dass es eine 32 Bit version installiert hat. Installier den Compiler jetzt nochmal neu, ich meld mich, wenn ich weiß, obs dann klappt.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2227181</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2227181</guid><dc:creator><![CDATA[ProProphet]]></dc:creator><pubDate>Mon, 25 Jun 2012 20:37:47 GMT</pubDate></item><item><title><![CDATA[Reply to &amp;lt;iostream&amp;gt; kann nicht eingebunden werden on Mon, 25 Jun 2012 20:41:02 GMT]]></title><description><![CDATA[<p>Für mich klingt das, als hätte die Datei die Endung .c anstatt von .cpp und wird dementsprechend als C-Code übersetzt</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2227183</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2227183</guid><dc:creator><![CDATA[Mr X]]></dc:creator><pubDate>Mon, 25 Jun 2012 20:41:02 GMT</pubDate></item><item><title><![CDATA[Reply to &amp;lt;iostream&amp;gt; kann nicht eingebunden werden on Mon, 25 Jun 2012 20:55:51 GMT]]></title><description><![CDATA[<p>Mr X schrieb:</p>
<blockquote>
<p>Für mich klingt das, als hätte die Datei die Endung .c anstatt von .cpp und wird dementsprechend als C-Code übersetzt</p>
</blockquote>
<p>Oh, ja, du hast Recht! Jetzt erinnere ich mich, früher hatte ich diesen Fehler ein paar Mal.</p>
<p><a class="plugin-mentions-user plugin-mentions-a" href="https://www.c-plusplus.net/forum/uid/28875">@IrgendeinName</a>: Das ist nicht möglich, da ja eine Ausgabe vorhanden ist; wäre der Compiler nicht installiert, dann würde der Log leer bleiben.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2227190</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2227190</guid><dc:creator><![CDATA[Sone]]></dc:creator><pubDate>Mon, 25 Jun 2012 20:55:51 GMT</pubDate></item><item><title><![CDATA[Reply to &amp;lt;iostream&amp;gt; kann nicht eingebunden werden on Mon, 25 Jun 2012 21:02:44 GMT]]></title><description><![CDATA[<p>hab Quatsch erzählt, das 32 hat wohl irgendwie zum Namen gezählt, nicht zur -Bit-Version... <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f615.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--confused_face"
      title=":-/"
      alt="😕"
    /></p>
<p><a class="plugin-mentions-user plugin-mentions-a" href="https://www.c-plusplus.net/forum/uid/4974">@MrX</a>: Danke!!!!! Das wars <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":-)"
      alt="🙂"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/2227196</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2227196</guid><dc:creator><![CDATA[ProProphet]]></dc:creator><pubDate>Mon, 25 Jun 2012 21:02:44 GMT</pubDate></item></channel></rss>