<?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[Fehler beim ausführen eines Programmes]]></title><description><![CDATA[<p>Hallo!</p>
<p>Ich habe nun mein erstes großes Programm (knappe 900 Zeilen) mit allen meinen derzeitigen Fähigkeiten geschrieben. Nach elendiglich vielen Kompilierfehlern, die ich alle ausgemärzt habe, dachte ich, dass ich die Applikation nun endlich ausführen könnte.</p>
<p>Stattdessen kam im DOS-Fenster folgende Fehlermeldung:</p>
<p>&quot;This application has requested the runtime to terminate it in an unusual way...&quot;</p>
<p>Nun bräuchte ich Hilfe zur Selbsthilfe. Ich kann mir nicht vorstellen, dass im Programm etwas schief läuft, wenn ja der Compiler alles compiliert. Im Forum hab ich eine Meldung gesehen, die mir aber nicht weiterhilft. AUch im Internet finde ich nur Softwarespezifische Lösungsansätze.</p>
<p>Ich bitte um Hilfe.</p>
<p>lg,<br />
LeFish</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/171664/fehler-beim-ausführen-eines-programmes</link><generator>RSS for Node</generator><lastBuildDate>Thu, 17 Sep 2026 12:17:11 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/171664.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 28 Jan 2007 00:56:01 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Fehler beim ausführen eines Programmes on Sun, 28 Jan 2007 00:56:01 GMT]]></title><description><![CDATA[<p>Hallo!</p>
<p>Ich habe nun mein erstes großes Programm (knappe 900 Zeilen) mit allen meinen derzeitigen Fähigkeiten geschrieben. Nach elendiglich vielen Kompilierfehlern, die ich alle ausgemärzt habe, dachte ich, dass ich die Applikation nun endlich ausführen könnte.</p>
<p>Stattdessen kam im DOS-Fenster folgende Fehlermeldung:</p>
<p>&quot;This application has requested the runtime to terminate it in an unusual way...&quot;</p>
<p>Nun bräuchte ich Hilfe zur Selbsthilfe. Ich kann mir nicht vorstellen, dass im Programm etwas schief läuft, wenn ja der Compiler alles compiliert. Im Forum hab ich eine Meldung gesehen, die mir aber nicht weiterhilft. AUch im Internet finde ich nur Softwarespezifische Lösungsansätze.</p>
<p>Ich bitte um Hilfe.</p>
<p>lg,<br />
LeFish</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1218432</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1218432</guid><dc:creator><![CDATA[LeFish]]></dc:creator><pubDate>Sun, 28 Jan 2007 00:56:01 GMT</pubDate></item><item><title><![CDATA[Reply to Fehler beim ausführen eines Programmes on Sun, 28 Jan 2007 01:03:30 GMT]]></title><description><![CDATA[<p>Naja, irgendwo wird dein Programm einen Fehler verursachen müssen, sonst würde deine Anwendung nicht abstürzen. Nur weil eine Anwendung kompiliert und linkt heißt das nicht das sie funktioniert, gibt ja auch Laufzeitfehler. <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="😉"
    /><br />
Ohne Source kann man da schlecht was zu sagen. Geh doch mal mit dem Debugger durch bis wo du kommst. Irgendwann muss es ja knallen und dann zeig doch mal die Stelle (und andere relevante Stellen).</p>
<p>Greetz</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1218434</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1218434</guid><dc:creator><![CDATA[Vellas]]></dc:creator><pubDate>Sun, 28 Jan 2007 01:03:30 GMT</pubDate></item><item><title><![CDATA[Reply to Fehler beim ausführen eines Programmes on Sun, 28 Jan 2007 01:56:52 GMT]]></title><description><![CDATA[<p>Teste die Funktionen alle einzeln.<br />
Ich gucke nachdem ich eine Funktion geschrieben habe erst, ob sie auch macht, was sie soll, bevor ich sie im Programm verwende.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1218440</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1218440</guid><dc:creator><![CDATA[obbba]]></dc:creator><pubDate>Sun, 28 Jan 2007 01:56:52 GMT</pubDate></item><item><title><![CDATA[Reply to Fehler beim ausführen eines Programmes on Sun, 28 Jan 2007 09:06:03 GMT]]></title><description><![CDATA[<p>Hallo!</p>
<p>Ich glaube ich habe einen der Übeltäter im Programm gefunden.</p>
<p>In meinem Programm definiere ich erst einige Grundfunktionen (Temperatur1messen, Heizung1, Ruehrwerk1) und führe diese dann aus anderen Funktionsdefinitionen heraus aus.</p>
<p>Die einzelnen Grundfunktionen, wie zb Temperatur1messen funktionieren EINZELN. Möchte ich dann den gesamten Kontext ausführen kommt es zu diesem Runtime error.</p>
<p>Vllt ist es schlecht Funktionen aus anderen heraus aufzurufen? Aber dafür sind doch definitionen da?!</p>
<p>Hier ist mal der Quellcode vom ersten teil mit den relevanten Grundfunktionen:</p>
<pre><code>#include &lt;stdio.h&gt;
#include &lt;conio.h&gt;
#include &lt;windows.h&gt;
#include &lt;time.h&gt;
#include &lt;iostream&gt;
#include &lt;math.h&gt;
using namespace std;

     typedef short _stdcall (*inpfuncPtr)(short portaddr);
     typedef void _stdcall (*oupfuncPtr)(short portaddr, short datum);

double Temp1messen()
{
    HINSTANCE hLib;
    inpfuncPtr inp32;
    oupfuncPtr oup32;

     /* Load the library */
     hLib = LoadLibrary(&quot;inpout32.dll&quot;);

     if (hLib == NULL) {
          printf(&quot;LoadLibrary Failed.\n&quot;);
          return -1;
     }

     /* get the address of the function */

     inp32 = (inpfuncPtr) GetProcAddress(hLib, &quot;Inp32&quot;);

     if (inp32 == NULL) {
          printf(&quot;GetProcAddress for Inp32 Failed.\n&quot;);
          return -1;
     }

     oup32 = (oupfuncPtr) GetProcAddress(hLib, &quot;Out32&quot;);

     if (oup32 == NULL) {
          printf(&quot;GetProcAddress for Oup32 Failed.\n&quot;);
          return -1;
     }

    double Temperatur1 = 0;
	int Byte = 0;
               /*--------------------------------*/
               /*                                */
               /*Spannungsversorgung des LM75 ein*/
               /*                                */
               /*--------------------------------*/

     Sleep(90);

        Byte = (inp32)(0x378) + 128;

        (oup32)(0x378,Byte);         /*Versorgungsspannung einschalten*/

               /*--------------------------------*/
               /*                                */
               /*Grundstellung im LM75 herstellen*/
               /*                                */
               /*--------------------------------*/

        (oup32)(0x37A,0x2);                /*SCL auf high stellen*/
        (oup32)(0x37A,0x0);                /*SDA auf high stellen*/

     Sleep(90);

     system(&quot;cls&quot;);

               /*--------------------------------*/
               /*                                */
               /*      Start an LM75 senden      */
               /*                                */
               /*--------------------------------*/

        (oup32)(0x37A,0x2);                /*SDA auf low stellen*/
        (oup32)(0x37A,0x3);                /*SCL auf low stellen*/

               /*--------------------------------*/
               /*                                */
               /*    Adressbyte an LM75 senden   */
               /*                                */
               /*--------------------------------*/

        /*Bit7/Bit6/Bit5/Bit4: feste Adresse des LM75 = 1001*/

        (oup32)(0x37A,0x1);                 /*Bit7 = 1*/
        (oup32)(0x37A,0x0);                 /*SCL auf high stellen*/
        (oup32)(0x37A,0x1);                 /*SCL auf low stellen*/

        (oup32)(0x37A,0x3);                 /*Bit6 = 0*/
        (oup32)(0x37A,0x2);                 /*SCL auf high stellen*/
        (oup32)(0x37A,0x3);                 /*SCL auf low stellen*/

        (oup32)(0x37A,0x3);                 /*Bit5 = 0*/
        (oup32)(0x37A,0x2);                 /*SCL auf high stellen*/
        (oup32)(0x37A,0x3);                 /*SCL auf low stellen*/

        (oup32)(0x37A,0x1);                 /*Bit4 = 1*/
        (oup32)(0x37A,0x0);                 /*SCL auf high stellen*/
        (oup32)(0x37A,0x1);                 /*SCL auf low stellen*/

        /*Bit3/Bit2/Bit1: variable Adresse des LM75, wie
          Pin5/Pin6/Pin7 = A2/A1/A0 verbunden; hier = 000*/

        (oup32)(0x37A,0x3);                 /*Bit3 = 0*/
        (oup32)(0x37A,0x2);                 /*SCL auf high stellen*/
        (oup32)(0x37A,0x3);                 /*SCL auf low stellen*/

        (oup32)(0x37A,0x3);                 /*Bit2 = 0*/
        (oup32)(0x37A,0x2);                 /*SCL auf high stellen*/
        (oup32)(0x37A,0x3);                 /*SCL auf low stellen*/

        (oup32)(0x37A,0x3);                 /*Bit1 = 0*/
        (oup32)(0x37A,0x2);                 /*SCL auf high stellen*/
        (oup32)(0x37A,0x3);                 /*SCL auf low stellen*/

        /*Bit0 je nach dem ob Master (PC) anschließend schreiben (0) soll
                                                       oder lesen (1) soll*/

        (oup32)(0x37A,0x1);                 /*Bit0 = 1*/
        (oup32)(0x37A,0x0);                 /*SCL auf high stellen*/
        (oup32)(0x37A,0x1);                 /*SCL auf low stellen*/

               /*--------------------------------*/
               /*                                */
               /*    LM75 sendet &quot;Acknowledge&quot;   */
               /*                                */
               /*--------------------------------*/

        (oup32)(0x37A,0x3);                 /*SDA auf low stellen*/
        (oup32)(0x37A,0x2);                 /*SCL auf high stellen*/
        (oup32)(0x37A,0x3);                 /*SCL auf low stellen*/

               /*--------------------------------*/
               /*                                */
               /*       Datenbyte 1 lesen        */
               /*                                */
               /*--------------------------------*/

   int ByteWert=0;

        (oup32)(0x37A,0x1);                 /*SDA auf high stellen*/

        (oup32)(0x37A,0x0);                 /*SCL auf high stellen*/
   if
        (((inp32)(0x379) &amp; 64) == 64) {
       ByteWert += 128;                        /*Achtes Bit auslesen*/
   }
   else {}
        (oup32)(0x37A,0x11);                 /*SCL auf low stellen*/

        (oup32)(0x37A,0x0);                 /*SCL auf high stellen*/

   if
        (((inp32)(0x379) &amp; 64) == 64) {
       ByteWert += 64;                        /*Siebentes Bit auslesen*/
   }
   else {}

        (oup32)(0x37A,0x1);                 /*SCL auf low stellen*/

        (oup32)(0x37A,0x0);                 /*SCL auf high stellen*/

   if
        (((inp32)(0x379) &amp; 64) == 64) {
       ByteWert += 32;                        /*Sechstes Bit auslesen*/
   }
   else {}

        (oup32)(0x37A,0x1);                 /*SCL auf low stellen*/

        (oup32)(0x37A,0x0);                 /*SCL auf high stellen*/
   if
        (((inp32)(0x379) &amp; 64) == 64) {
       ByteWert += 16;                        /*Fünftes Bit auslesen*/
   }
   else {}

        (oup32)(0x37A,0x1);                 /*SCL auf low stellen*/

        (oup32)(0x37A,0x0);                 /*SCL auf high stellen*/
   if
        (((inp32)(0x379) &amp; 64) == 64) {
       ByteWert += 8;                        /*Viertes Bit auslesen*/
   }
   else {}

        (oup32)(0x37A,0x1);                 /*SCL auf low stellen*/

        (oup32)(0x37A,0x0);                 /*SCL auf high stellen*/
   if
        (((inp32)(0x379) &amp; 64) == 64) {
       ByteWert += 4;                        /*Drittes Bit auslesen*/
   }
   else {}

        (oup32)(0x37A,0x1);                 /*SCL auf low stellen*/

        (oup32)(0x37A,0x0);                 /*SCL auf high stellen*/
   if
        (((inp32)(0x379) &amp; 64) == 64) {
       ByteWert += 2;                        /*Zweites Bit auslesen*/
   }
   else {}

        (oup32)(0x37A,0x1);                 /*SCL auf low stellen*/

        (oup32)(0x37A,0x0);                 /*SCL auf high stellen*/
   if
        (((inp32)(0x379) &amp; 64) == 64) {
       ByteWert += 1;                        /*Erstes Bit auslesen*/
   }
   else {}

        (oup32)(0x37A,0x1);                 /*SCL auf low stellen*/

               /*--------------------------------*/
               /*                                */
               /* Ackknowledge vom Master senden */
               /*                                */
               /*--------------------------------*/

        (oup32)(0x37A,0x3);                 /*SDA auf low stellen*/
        (oup32)(0x37A,0x2);                 /*SCL auf high stellen*/
        (oup32)(0x37A,0x3);                 /*SCL auf low stellen*/
        (oup32)(0x37A,0x1);                 /*SDA auf high stellen*/

             /*-----------------------------------*/
             /*                                   */
             /*Höchstwertiges Bit vom 2.Byte lesen*/
             /*                                   */
             /*-----------------------------------*/

   int kommafuenf=1;

        (oup32)(0x37A,0x0);                 /*SCL auf high stellen*/
   if
        (((inp32)(0x379) &amp; 64) == 64) {
       kommafuenf = 1;                        /*Erstes Bit auslesen*/
       }
   else {
        kommafuenf = 0;
   }

        (oup32)(0x37A,0x3);                 /*SCL auf low stellen*/

               /*--------------------------------*/
               /*                                */
               /* Stopsequenz an den LM75 senden */
               /*                                */
               /*--------------------------------*/

        (oup32)(0x37A,0x0);                 /*SCL auf high stellen*/
        (oup32)(0x37A,0x1);                 /*SDA auf high stellen*/

               /*--------------------------------*/
               /*                                */
               /*       Vorzeichen bestimmen     */
               /*                                */
               /*--------------------------------*/

   if
        ((ByteWert &amp; 128) == 128) {
       Temperatur1 = ByteWert - 256;                 /*Temperatur unter 0 Grad*/
   }
   else {
       Temperatur1 = ByteWert;                       /*Temperatur über 0 Grad*/
   }

               /*--------------------------------*/
               /*                                */
               /*       Temperatur ausgeben      */
               /*                                */
               /*--------------------------------*/

   if(kommafuenf == 1) {
       Temperatur1 = Temperatur1 + 0.5;
   }
   else {}
	return Temperatur1;
}

string Heizung1( string Heizungsstatus1 )
{
    HINSTANCE hLib;
    inpfuncPtr inp32;
    oupfuncPtr oup32;

     /* Load the library */
     hLib = LoadLibrary(&quot;inpout32.dll&quot;);

     /* get the address of the function */

     inp32 = (inpfuncPtr) GetProcAddress(hLib, &quot;Inp32&quot;);

     oup32 = (oupfuncPtr) GetProcAddress(hLib, &quot;Out32&quot;);

    int Byte;

    Byte = (inp32)(0x378);

	if (Heizungsstatus1 == &quot;ein&quot;)
	{
	    Byte = Byte + 1;
		(oup32)(0x378,Byte);
	}

	if (Heizungsstatus1 == &quot;aus&quot;)
	{
	    Byte = Byte - 1;
		(oup32)(0x378,Byte);
	}

	return Heizungsstatus1;
}

string Ruehrwerk1( string Ruehrwerkstatus1 )
{
    HINSTANCE hLib;
    inpfuncPtr inp32;
    oupfuncPtr oup32;

     /* Load the library */
     hLib = LoadLibrary(&quot;inpout32.dll&quot;);

     /* get the address of the function */

     inp32 = (inpfuncPtr) GetProcAddress(hLib, &quot;Inp32&quot;);

     oup32 = (oupfuncPtr) GetProcAddress(hLib, &quot;Out32&quot;);

        int Byte;

    Byte = (inp32)(0x378);

	if (Ruehrwerkstatus1 == &quot;ein&quot;)
	{
	    Byte = Byte + 2;
		(oup32)(0x378,Byte);
	}

	if (Ruehrwerkstatus1 == &quot;aus&quot;)
	{
	    Byte = Byte - 2;
		(oup32)(0x378,Byte);
	}

	return Ruehrwerkstatus1;
}

void Einmaischen ()
{
	double Temperatur1 = 0;
	double Zieltemperatur = 40;
	string Heizungsstatus1 = 0;
	double Zielzeit = 40;

	while (Temperatur1 &lt;= Zieltemperatur)
	{
		Temperatur1 = Temp1messen();

		Heizungsstatus1 = Heizung1( &quot;ein&quot; );

		system(&quot;cls&quot;);

		break;
		break;
		break;
		break;
		cout&lt;&lt; &quot;                        /-------------------------------------------------\ &quot;&lt;&lt;endl;
		cout&lt;&lt; &quot;                        |    PROGRAMM                      STATUS         |&quot;&lt;&lt;endl;
		cout&lt;&lt; &quot;                        |                                                 |&quot;&lt;&lt;endl;
		cout&lt;&lt; &quot;                        |Stufe 1: Einmaischen               aktiv         |&quot;&lt;&lt;endl;
		cout&lt;&lt; &quot;                        |Stufe 2: Eiweisrast         nicht abgeschlossen  |&quot;&lt;&lt;endl;
		cout&lt;&lt; &quot;                        |Stufe 3: Maltoserast        nicht abgeschlossen  |&quot;&lt;&lt;endl;
		cout&lt;&lt; &quot;                        |Stufe 4: Verzuckerung       nicht abgeschlossen  |&quot;&lt;&lt;endl;
		cout&lt;&lt; &quot;                        |Stufe 5: Läutern            nicht abgeschlossen  |&quot;&lt;&lt;endl;
		cout&lt;&lt; &quot;                        |Stufe 6: Kochen             nicht abgeschlossen  |&quot;&lt;&lt;endl;
		cout&lt;&lt; &quot;                        |Stufe 6: Vergähren          nicht abgeschlossen  |&quot;&lt;&lt;endl;
		cout&lt;&lt; &quot;                        |                                                 |&quot;&lt;&lt;endl;
		cout&lt;&lt; &quot;                        \-------------------------------------------------/&quot;&lt;&lt;endl;
		break;
		break;
		cout&lt;&lt; &quot;                        Derzeitiges Programm: Einmaischen - Kochphase (Phase 1 von 2)&quot;&lt;&lt;endl;
		break;
		break;
		cout&lt;&lt; &quot;                # Die Temperatur in Kessel 1 beträgt derzeit: &quot;&lt;&lt; Temperatur1 &lt;&lt;&quot; Grad&quot;&lt;&lt;endl;
		break;
		cout&lt;&lt; &quot;                # Die Heizung von Kessel 1 ist derzeit &quot;&lt;&lt; Heizungsstatus1&lt;&lt;&quot;geschalten&quot;&lt;&lt;endl;
	}

    time_t start,end;
    time_t seconds;

    time (&amp;start);

	double maxTemp = 41;
	double minTemp = 39;
	double ZeitinSekunden = 0;
	double ZeitinMinuten = 0;
	double ZeitinMinuten_ = 0;
	double Timerzeit = 0;
	double Zeit = 0;

	while (Timerzeit &lt;= Zielzeit)
	{
		Temperatur1 = Temp1messen();

		if (Temperatur1 &lt; minTemp)
		{
			Heizungsstatus1 = Heizung1( &quot;ein&quot; );
		}

		if (Temperatur1 &gt; maxTemp)
		{
			Heizungsstatus1 = Heizung1( &quot;aus&quot; );
		}

		Zeit = time (NULL);

		Timerzeit = Zeit - start;

		Timerzeit = Timerzeit / 60;

		ZeitinMinuten_ = (Zielzeit / 60) - Timerzeit;
		ZeitinMinuten = floor (ZeitinMinuten_);
		ZeitinSekunden = (ZeitinMinuten_ - ZeitinMinuten) * 60;

		system(&quot;cls&quot;);

		break;
		break;
		break;
		break;
		cout&lt;&lt; &quot;                        /-------------------------------------------------\ &quot;&lt;&lt;endl;
		cout&lt;&lt; &quot;                        |    PROGRAMM                      STATUS         |&quot;&lt;&lt;endl;
		cout&lt;&lt; &quot;                        |                                                 |&quot;&lt;&lt;endl;
		cout&lt;&lt; &quot;                        |Stufe 1: Einmaischen               aktiv         |&quot;&lt;&lt;endl;
		cout&lt;&lt; &quot;                        |Stufe 2: Eiweisrast         nicht abgeschlossen  |&quot;&lt;&lt;endl;
		cout&lt;&lt; &quot;                        |Stufe 3: Maltoserast        nicht abgeschlossen  |&quot;&lt;&lt;endl;
		cout&lt;&lt; &quot;                        |Stufe 4: Verzuckerung       nicht abgeschlossen  |&quot;&lt;&lt;endl;
		cout&lt;&lt; &quot;                        |Stufe 5: Läutern            nicht abgeschlossen  |&quot;&lt;&lt;endl;
		cout&lt;&lt; &quot;                        |Stufe 6: Kochen             nicht abgeschlossen  |&quot;&lt;&lt;endl;
		cout&lt;&lt; &quot;                        |Stufe 6: Vergähren          nicht abgeschlossen  |&quot;&lt;&lt;endl;
		cout&lt;&lt; &quot;                        |                                                 |&quot;&lt;&lt;endl;
		cout&lt;&lt; &quot;                        \-------------------------------------------------/&quot;&lt;&lt;endl;
		break;
		break;
		cout&lt;&lt; &quot;                        Derzeitiges Programm: Einmaischen - Ruhephase (Phase 2 von 2)&quot;&lt;&lt;endl;
		break;
		break;
		cout&lt;&lt; &quot;                # Die Temperatur in Kessel 1 beträgt derzeit: &quot;&lt;&lt; Temperatur1 &lt;&lt;&quot; Grad&quot;&lt;&lt;endl;
		break;
		cout&lt;&lt; &quot;                # Die Heizung von Kessel 1 ist derzeit &quot;&lt;&lt; Heizungsstatus1&lt;&lt;&quot;geschalten&quot;&lt;&lt;endl;
		break;
		cout&lt;&lt; &quot;                # Es verbleiben noch &quot;&lt;&lt; ZeitinMinuten &lt;&lt; &quot; Minuten und &quot;&lt;&lt; ZeitinSekunden &lt;&lt; &quot; Sekunden&quot;&lt;&lt;endl;
	}
time (&amp;end);
}

int main ()
{
    Einmaischen();
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1218462</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1218462</guid><dc:creator><![CDATA[LeFish]]></dc:creator><pubDate>Sun, 28 Jan 2007 09:06:03 GMT</pubDate></item><item><title><![CDATA[Reply to Fehler beim ausführen eines Programmes on Sun, 28 Jan 2007 12:10:21 GMT]]></title><description><![CDATA[<p>die definierten funktionen funktionieren einwandfrei und bedürfen keiner weiteren überprüfung. könnte bitte einer von euch nur den kontext durschauen, ob ich irgendwo etwas falsch eingebunden hab?</p>
<p>vielen dank!</p>
<p>lefish</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1218530</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1218530</guid><dc:creator><![CDATA[LeFish]]></dc:creator><pubDate>Sun, 28 Jan 2007 12:10:21 GMT</pubDate></item><item><title><![CDATA[Reply to Fehler beim ausführen eines Programmes on Sun, 28 Jan 2007 13:27:07 GMT]]></title><description><![CDATA[<p>hat sich schon erledigt - man darf stringvariablen keine zahlen automatisch zuweisen.</p>
<p>string Heizung1 = 0;</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1218589</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1218589</guid><dc:creator><![CDATA[LeFish]]></dc:creator><pubDate>Sun, 28 Jan 2007 13:27:07 GMT</pubDate></item></channel></rss>