<?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[error beim compilen]]></title><description><![CDATA[<p>hallöchen wie ihr seht bin ich neu und lern grad c++ mit gtem tutorial<br />
allerdings konnt ich meine test datei nicht compilen<br />
warum?<br />
sobald ich bei meinem compiler (visual c++2010) debuggen will kommt dies<br />
_________________________________________________________________________</p>
<p>1&gt;------ Erstellen gestartet: Projekt: lolol, Konfiguration: Debug Win32 ------<br />
1&gt;LINK : error LNK2001: Nicht aufgelöstes externes Symbol &quot;_mainCRTStartup&quot;.<br />
1&gt;c:\dokumente und einstellungen\admin\eigene dateien\visual studio 2010\Projects\lolol\Debug\lolol.exe : fatal error LNK1120: 1 nicht aufgelöste externe Verweise.<br />
======= Erstellen: 0 erfolgreich, Fehler bei 1, 0 aktuell, 0 übersprungen =======<br />
_________________________________________________________________________</p>
<p>bei diesem code</p>
<pre><code class="language-cpp">// Kapitel 1 - Programm 1 - KOMM.CPP

#include &lt;iostream&gt;	/* Das ist die Definitionsdatei für Ströme */

void drucke(const int Wert);

int main()
{
const int START = 3;		// Der Wert von START kann nicht verändert werden
const int STOPP = 9;		// Der Wert von STOPP kann nicht verändert werden
volatile int MITTE = 6;		/* Der Wert von MITTE kann von etwas
                                 verändert werden, das außerhalb dieses
                                 Programmes ist.                         */

int index;				/* Eine normale Variable in C */

   for (index = START ; index &lt; STOPP ; index++)
      drucke(index);

   return 0;
}	/* Ende des Programmes */

void drucke(const int Wert)
{
   std::cout &lt;&lt; &quot;Der Wert des Index ist  &quot; &lt;&lt; Wert &lt;&lt; &quot;\n&quot;;
}

// Ergebnis beim Ausführen
//
// Der Wert des Index ist  3
// Der Wert des Index ist  4
// Der Wert des Index ist  5
// Der Wert des Index ist  6
// Der Wert des Index ist  7
// Der Wert des Index ist  8
</code></pre>
<p>ich hoffe ihr könnt mir helfen</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/274205/error-beim-compilen</link><generator>RSS for Node</generator><lastBuildDate>Thu, 27 Aug 2026 19:04:49 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/274205.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 21 Sep 2010 16:11:14 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to error beim compilen on Tue, 21 Sep 2010 16:11:14 GMT]]></title><description><![CDATA[<p>hallöchen wie ihr seht bin ich neu und lern grad c++ mit gtem tutorial<br />
allerdings konnt ich meine test datei nicht compilen<br />
warum?<br />
sobald ich bei meinem compiler (visual c++2010) debuggen will kommt dies<br />
_________________________________________________________________________</p>
<p>1&gt;------ Erstellen gestartet: Projekt: lolol, Konfiguration: Debug Win32 ------<br />
1&gt;LINK : error LNK2001: Nicht aufgelöstes externes Symbol &quot;_mainCRTStartup&quot;.<br />
1&gt;c:\dokumente und einstellungen\admin\eigene dateien\visual studio 2010\Projects\lolol\Debug\lolol.exe : fatal error LNK1120: 1 nicht aufgelöste externe Verweise.<br />
======= Erstellen: 0 erfolgreich, Fehler bei 1, 0 aktuell, 0 übersprungen =======<br />
_________________________________________________________________________</p>
<p>bei diesem code</p>
<pre><code class="language-cpp">// Kapitel 1 - Programm 1 - KOMM.CPP

#include &lt;iostream&gt;	/* Das ist die Definitionsdatei für Ströme */

void drucke(const int Wert);

int main()
{
const int START = 3;		// Der Wert von START kann nicht verändert werden
const int STOPP = 9;		// Der Wert von STOPP kann nicht verändert werden
volatile int MITTE = 6;		/* Der Wert von MITTE kann von etwas
                                 verändert werden, das außerhalb dieses
                                 Programmes ist.                         */

int index;				/* Eine normale Variable in C */

   for (index = START ; index &lt; STOPP ; index++)
      drucke(index);

   return 0;
}	/* Ende des Programmes */

void drucke(const int Wert)
{
   std::cout &lt;&lt; &quot;Der Wert des Index ist  &quot; &lt;&lt; Wert &lt;&lt; &quot;\n&quot;;
}

// Ergebnis beim Ausführen
//
// Der Wert des Index ist  3
// Der Wert des Index ist  4
// Der Wert des Index ist  5
// Der Wert des Index ist  6
// Der Wert des Index ist  7
// Der Wert des Index ist  8
</code></pre>
<p>ich hoffe ihr könnt mir helfen</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1955484</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1955484</guid><dc:creator><![CDATA[B14ck0ut]]></dc:creator><pubDate>Tue, 21 Sep 2010 16:11:14 GMT</pubDate></item><item><title><![CDATA[Reply to error beim compilen on Tue, 21 Sep 2010 18:06:59 GMT]]></title><description><![CDATA[<blockquote>
<p>sobald ich bei meinem compiler (visual c++2010) debuggen will kommt dies</p>
</blockquote>
<p>also ich benutzte den compiler von borland und bei dem läuft alles reibungslos<br />
woran es jetzt aber liegt kann ich nicht sagen</p>
<p>hier findust du in einem anderen forum, was mainCRTStartup macht<br />
<a href="http://www.programmersheaven.com/mb/CandCPP/355951/355951/compiler-and-linker-interaction-for-producing-main/" rel="nofollow">http://www.programmersheaven.com/mb/CandCPP/355951/355951/compiler-and-linker-interaction-for-producing-main/</a></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1955543</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1955543</guid><dc:creator><![CDATA[Gucky]]></dc:creator><pubDate>Tue, 21 Sep 2010 18:06:59 GMT</pubDate></item><item><title><![CDATA[Reply to error beim compilen on Tue, 21 Sep 2010 19:01:14 GMT]]></title><description><![CDATA[<p>Falscher Projekttyp? Hast du ein Win32-Konsolenprojekt erstellt (nicht Win32-Anwendung)?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1955580</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1955580</guid><dc:creator><![CDATA[_matze]]></dc:creator><pubDate>Tue, 21 Sep 2010 19:01:14 GMT</pubDate></item></channel></rss>