<?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[Fatal error....wtf]]></title><description><![CDATA[<p>Hey Leute...ich denke, hier genügt es wenn ich nur die oberen Zeilen des Soucecodes poste...<br />
Ich versteh zwar die Fehlermeldung, versteh aber nicht, wie sie zu beheben ist!</p>
<p>Fehlermeldung</p>
<pre><code class="language-cpp">C:\Programme\Microsoft Visual Studio\MyProjects\Übungen-Kap3\Übung2.cpp(3) : fatal error C1083: Include-Datei kann nicht geoeffnet werden: 'stdlib': No such file or directory
</code></pre>
<p>Sourcecode:</p>
<pre><code class="language-cpp">#include &lt;iostream&gt;
#include &lt;string&gt;
#include &lt;stdlib&gt;

using namespace std;

int main()
{
.
.
.
}
</code></pre>
<p>Wo liegt hier der Fehler?!</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/125371/fatal-error-wtf</link><generator>RSS for Node</generator><lastBuildDate>Mon, 24 Aug 2026 07:30:20 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/125371.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 06 Nov 2005 11:45:39 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Fatal error....wtf on Sun, 06 Nov 2005 11:45:39 GMT]]></title><description><![CDATA[<p>Hey Leute...ich denke, hier genügt es wenn ich nur die oberen Zeilen des Soucecodes poste...<br />
Ich versteh zwar die Fehlermeldung, versteh aber nicht, wie sie zu beheben ist!</p>
<p>Fehlermeldung</p>
<pre><code class="language-cpp">C:\Programme\Microsoft Visual Studio\MyProjects\Übungen-Kap3\Übung2.cpp(3) : fatal error C1083: Include-Datei kann nicht geoeffnet werden: 'stdlib': No such file or directory
</code></pre>
<p>Sourcecode:</p>
<pre><code class="language-cpp">#include &lt;iostream&gt;
#include &lt;string&gt;
#include &lt;stdlib&gt;

using namespace std;

int main()
{
.
.
.
}
</code></pre>
<p>Wo liegt hier der Fehler?!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/909315</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/909315</guid><dc:creator><![CDATA[XaTrIxX]]></dc:creator><pubDate>Sun, 06 Nov 2005 11:45:39 GMT</pubDate></item><item><title><![CDATA[Reply to Fatal error....wtf on Sun, 06 Nov 2005 11:48:30 GMT]]></title><description><![CDATA[<p>vergesst es:<br />
hab mich nur verschrieben...<br />
es heißt &lt;cstdlib&gt;</p>
<p>nun, beim kompilieren gabs keinen fehler...<br />
aber beim Linken bekam ich gleich 2...</p>
<pre><code class="language-cpp">Linker-Vorgang läuft...
Übung2.obj : error LNK2005: _main bereits in Übung1.obj definiert
Debug/Übung1.exe : fatal error LNK1169: Ein oder mehrere mehrfach definierte Symbole gefunden
Fehler beim Ausführen von link.exe.
</code></pre>
<p>Sourcecode: diesmal ganz!</p>
<pre><code class="language-cpp">#include &lt;iostream&gt;
#include &lt;string&gt;
#include &lt;cstdlib&gt;

using namespace std;

int main()
{
	string meldung = &quot;\nAus Fehlern wird man klug!&quot;;
	cout &lt;&lt; meldung &lt;&lt; endl;

	int len = meldung.length();
	cout &lt;&lt; &quot;Die Laenge des Strings: &quot; &lt;&lt; len &lt;&lt;endl;

	//Zufallszahl:

	int b;
	srand(12);
	b = rand();
	cout &lt;&lt; &quot;\nZufallszahl:\t &quot; &lt;&lt; b &lt;&lt; endl;

	return 0;

}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/909319</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/909319</guid><dc:creator><![CDATA[XaTrIxX]]></dc:creator><pubDate>Sun, 06 Nov 2005 11:48:30 GMT</pubDate></item><item><title><![CDATA[Reply to Fatal error....wtf on Sun, 06 Nov 2005 11:48:46 GMT]]></title><description><![CDATA[<p>Das Ding heißt &quot;cstdlib&quot;</p>
<p>MfG SideWinder</p>
]]></description><link>https://www.c-plusplus.net/forum/post/909320</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/909320</guid><dc:creator><![CDATA[SideWinder]]></dc:creator><pubDate>Sun, 06 Nov 2005 11:48:46 GMT</pubDate></item><item><title><![CDATA[Reply to Fatal error....wtf on Sun, 06 Nov 2005 11:52:52 GMT]]></title><description><![CDATA[<p>ach du sch...<br />
ich hab nicht gewusst, dass man 2 programme nicht im selben ordner speichern darf...<br />
habs natürlich gleich behoben, ansonsten passt alles, ty</p>
]]></description><link>https://www.c-plusplus.net/forum/post/909324</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/909324</guid><dc:creator><![CDATA[XaTrIxX]]></dc:creator><pubDate>Sun, 06 Nov 2005 11:52:52 GMT</pubDate></item><item><title><![CDATA[Reply to Fatal error....wtf on Sun, 06 Nov 2005 11:58:58 GMT]]></title><description><![CDATA[<p>Bei allen Headerdatein, die man ohne *.h benutzen will, (neuere Version der C Libs), muss meistens ein 'c' im Namen davor setzen zb.: &lt;cmath&gt;, &lt;cstdio.h&gt;, &lt;cstring&gt; ...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/909331</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/909331</guid><dc:creator><![CDATA[Tc++H]]></dc:creator><pubDate>Sun, 06 Nov 2005 11:58:58 GMT</pubDate></item><item><title><![CDATA[Reply to Fatal error....wtf on Sun, 06 Nov 2005 15:13:06 GMT]]></title><description><![CDATA[<p>Du linkst anscheinend zwei .c-Dateien zusammen, die beide ein main() enthalten. Das kann nicht funktionieren.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/909582</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/909582</guid><dc:creator><![CDATA[Ringding]]></dc:creator><pubDate>Sun, 06 Nov 2005 15:13:06 GMT</pubDate></item></channel></rss>