<?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[const char* to char]]></title><description><![CDATA[<p>Hallo</p>
<p>Ich schreibe gerade an einem Programm, welches eine Menge an Zahlen (zB.: 1234)<br />
in buchstaben (zB.: eins-zwei-drei-vier) ausgeben soll.</p>
<p>Egal was ich machen, das Ergebnis ist ein Error:<br />
error: invalid conversion from `const char*' to `int'</p>
<p>bzw. error: invalid conversion from `const char*' to `char'</p>
<p>Wenn ich dann alles per const char* definiere kommt bei mir kein vernünftiges Ergebnis zustande.</p>
<p>Was ich zuerst mache ist: Ich drücke mir die einzellnen zahlen (zB bei vier Zahlen 1234) aus, durch Modulo und dividieren. Danach füge ich jede einzellne Zahl zu einer Variable dazu zB bekomme ich dann für a=1 für b=2 c=3 und d=4</p>
<p>Was ich danach versuche scheitert aber :&lt;<br />
Bin noch sehr neu im C++.</p>
<p>Danke</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/253337/const-char-to-char</link><generator>RSS for Node</generator><lastBuildDate>Sun, 13 Sep 2026 21:44:19 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/253337.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 31 Oct 2009 22:44:21 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to const char* to char on Sat, 31 Oct 2009 22:44:21 GMT]]></title><description><![CDATA[<p>Hallo</p>
<p>Ich schreibe gerade an einem Programm, welches eine Menge an Zahlen (zB.: 1234)<br />
in buchstaben (zB.: eins-zwei-drei-vier) ausgeben soll.</p>
<p>Egal was ich machen, das Ergebnis ist ein Error:<br />
error: invalid conversion from `const char*' to `int'</p>
<p>bzw. error: invalid conversion from `const char*' to `char'</p>
<p>Wenn ich dann alles per const char* definiere kommt bei mir kein vernünftiges Ergebnis zustande.</p>
<p>Was ich zuerst mache ist: Ich drücke mir die einzellnen zahlen (zB bei vier Zahlen 1234) aus, durch Modulo und dividieren. Danach füge ich jede einzellne Zahl zu einer Variable dazu zB bekomme ich dann für a=1 für b=2 c=3 und d=4</p>
<p>Was ich danach versuche scheitert aber :&lt;<br />
Bin noch sehr neu im C++.</p>
<p>Danke</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1801443</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1801443</guid><dc:creator><![CDATA[Brai]]></dc:creator><pubDate>Sat, 31 Oct 2009 22:44:21 GMT</pubDate></item><item><title><![CDATA[Reply to const char* to char on Sat, 31 Oct 2009 22:46:25 GMT]]></title><description><![CDATA[<p>Zeig doch mal Code.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1801445</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1801445</guid><dc:creator><![CDATA[Icematix]]></dc:creator><pubDate>Sat, 31 Oct 2009 22:46:25 GMT</pubDate></item><item><title><![CDATA[Reply to const char* to char on Sat, 31 Oct 2009 23:25:25 GMT]]></title><description><![CDATA[<p>schau einmal in der FAQ nach dem Thread &quot;einmal zahl nach string und zurück&quot; - sollte weiterhelfen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1801456</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1801456</guid><dc:creator><![CDATA[pumuckl]]></dc:creator><pubDate>Sat, 31 Oct 2009 23:25:25 GMT</pubDate></item><item><title><![CDATA[Reply to const char* to char on Sun, 01 Nov 2009 13:14:50 GMT]]></title><description><![CDATA[<p>#include &lt;iostream&gt;</p>
<p>using namespace std;<br />
int main()</p>
<p>{<br />
int zahl;<br />
int a[10]={&quot;null&quot;,&quot;eins&quot;,&quot;zwei&quot;,&quot;drei&quot;,&quot;vier&quot;,&quot;fuenf&quot;,&quot;sechs&quot;,&quot;sieben&quot;,&quot;acht&quot;,&quot;neun&quot;};<br />
int b[10]={&quot;null&quot;,&quot;eins&quot;,&quot;zwei&quot;,&quot;drei&quot;,&quot;vier&quot;,&quot;fuenf&quot;,&quot;sechs&quot;,&quot;sieben&quot;,&quot;acht&quot;,&quot;neun&quot;};<br />
int c[10]={&quot;null&quot;,&quot;eins&quot;,&quot;zwei&quot;,&quot;drei&quot;,&quot;vier&quot;,&quot;fuenf&quot;,&quot;sechs&quot;,&quot;sieben&quot;,&quot;acht&quot;,&quot;neun&quot;};<br />
int d[10]={&quot;null&quot;,&quot;eins&quot;,&quot;zwei&quot;,&quot;drei&quot;,&quot;vier&quot;,&quot;fuenf&quot;,&quot;sechs&quot;,&quot;sieben&quot;,&quot;acht&quot;,&quot;neun&quot;};</p>
<p>cout &lt;&lt; &quot;Bitte geben Sie eine vierstellige Zahl ein &quot;;<br />
cin &gt;&gt; zahl;<br />
a=zahl/1000;<br />
b1=zahl/100;<br />
b=b1%10;<br />
c1=zahl/10;<br />
c=c1%10;<br />
d=zahl%10;</p>
<p>cout &lt;&lt; &quot;Die Zahl lautet &quot; &lt;&lt; a[10] &lt;&lt; b[10] &lt;&lt; c[10] &lt;&lt; d[10];<br />
cout &lt;&lt; endl;<br />
return 0;</p>
<p>}</p>
<p>Sind sicher eine Menge Fehler drin, ich hoffe ihr könnt mir helfen, bin noch recht neu und komm nicht so ganz mit.</p>
<p>Danke</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1801620</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1801620</guid><dc:creator><![CDATA[Brai]]></dc:creator><pubDate>Sun, 01 Nov 2009 13:14:50 GMT</pubDate></item><item><title><![CDATA[Reply to const char* to char on Sun, 01 Nov 2009 13:32:43 GMT]]></title><description><![CDATA[<p>Du versuchst integers einen Text zuzuweisen. Das kann nicht funktionieren. Wenn schon dann so:</p>
<pre><code class="language-cpp">int a[10] = { 0,1,2,3,4,5,6,7,8,9 };
</code></pre>
<p>Aber ich weiss nicht so recht was Du mit dem Code so erreichen willst und was die ganzen Rechenoperationen sollen auf den ZEIGERN! der Arrays.<br />
Für cout brauchst Du die Zahlen nicht konvertieren. Das wird automatisch gemacht von der Klasse und deren operatoren.</p>
<pre><code class="language-cpp">std::cout &lt;&lt; &quot;Hello World! Meine Nummer ist &quot; &lt;&lt; 78951707 &lt;&lt; std::endl;
</code></pre>
<p>Das ist gültig und funktioniert.<br />
rya.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1801626</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1801626</guid><dc:creator><![CDATA[[[global:former_user]]]]></dc:creator><pubDate>Sun, 01 Nov 2009 13:32:43 GMT</pubDate></item><item><title><![CDATA[Reply to const char* to char on Sun, 01 Nov 2009 13:32:48 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">#include &lt;iostream&gt;

using namespace std;
int main()

{
int zahlentexte[10]={&quot;null&quot;,&quot;eins&quot;,&quot;zwei&quot;,&quot;drei&quot;,&quot;vier&quot;,&quot;fuenf&quot;,&quot;sechs&quot;,&quot;sieben&quot;,&quot;acht&quot;,&quot;neun&quot;};

cout &lt;&lt; &quot;Bitte geben Sie eine vierstellige Zahl ein  &quot;;
int zahl;
cin &gt;&gt; zahl;

int a=zahl/1000;
int b1=zahl/100;
int b=b1%10;
int c1=zahl/10;
int c=c1%10;
int d=zahl%10;

cout &lt;&lt; &quot;Die Zahl lautet &quot;;
cout&lt;&lt;zahlentexte[a]&lt;&lt;'-';
cout&lt;&lt;zahlentexte[b]&lt;&lt;'-';
cout&lt;&lt;zahlentexte[c]&lt;&lt;'-';
cout&lt;&lt;zahlentexte[d]&lt;&lt;'\n';

return 0;

}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1801627</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1801627</guid><dc:creator><![CDATA[volkard]]></dc:creator><pubDate>Sun, 01 Nov 2009 13:32:48 GMT</pubDate></item><item><title><![CDATA[Reply to const char* to char on Sun, 01 Nov 2009 16:16:45 GMT]]></title><description><![CDATA[<p>Danke für die Antworten.</p>
<p>Was ich erreichen will ist, dass man zB eine 6 stellige Zahl eingibt und man dann als Ausgabe die Zahl in Buchstaben bekommt: zB die Zahl 123456 soll dann als Ausgabe stehen: eins, zwei, drei, vier, fünf, sechs.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1801715</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1801715</guid><dc:creator><![CDATA[Brai]]></dc:creator><pubDate>Sun, 01 Nov 2009 16:16:45 GMT</pubDate></item><item><title><![CDATA[Reply to const char* to char on Sun, 01 Nov 2009 16:23:37 GMT]]></title><description><![CDATA[<p>(fast) genau das macht volkards code doch, wenn du aus dem falschen int nen (const) char* bzw (const) char[]<br />
dann guckst du dir noch an, was dort gerechnet wird und kommst vll auf die idee, dass es auch in C++ schleifen gibt...</p>
<p>bb</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1801719</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1801719</guid><dc:creator><![CDATA[unskilled]]></dc:creator><pubDate>Sun, 01 Nov 2009 16:23:37 GMT</pubDate></item><item><title><![CDATA[Reply to const char* to char on Sun, 01 Nov 2009 16:46:44 GMT]]></title><description><![CDATA[<p>Das (const) char* nimmt doch einen fixen Wert aus dem Speicher, hab das mal gestern probiert und er hat egal bei welcher Eingabe auch immer, immer wieder den gleichen Wert ausgegeben.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1801734</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1801734</guid><dc:creator><![CDATA[Brai]]></dc:creator><pubDate>Sun, 01 Nov 2009 16:46:44 GMT</pubDate></item><item><title><![CDATA[Reply to const char* to char on Sun, 01 Nov 2009 17:03:05 GMT]]></title><description><![CDATA[<p>const heißt eben konstant. Also ändert es sich nicht.<br />
Du möchtest erstmal deine Zeilen</p>
<pre><code class="language-cpp">int a[10]={&quot;null&quot;,&quot;eins&quot;,&quot;zwei&quot;,&quot;drei&quot;,&quot;vier&quot;,&quot;fuenf&quot;,&quot;sechs&quot;,&quot;sieben&quot;,&quot;acht&quot;,&quot;neun&quot;}; ...
</code></pre>
<p>in eine einzige Zeile</p>
<pre><code class="language-cpp">const char textzahlen[]={&quot;null&quot;,&quot;eins&quot;,&quot;zwei&quot;,&quot;drei&quot;,&quot;vier&quot;,&quot;fuenf&quot;,&quot;sechs&quot;,&quot;sieben&quot;,&quot;acht&quot;,&quot;neun&quot;};
</code></pre>
<p>ändern. const char[] deshalb, weil sich die Zahlen 0 bis 9 als Text niemals ändern werden.</p>
<p>Danach dann</p>
<pre><code class="language-cpp">printf(&quot;Die Zahl lautet %s, %s, %s, %s\n&quot;, textzahlen[a], textzahlen[b], textzahlen[c], textzahlen[d]);
//oder
cout &lt;&lt; &quot;Die Zahl lautet &quot; &lt;&lt; textzahlen[a] &lt;&lt; textzahlen[b] &lt;&lt; textzahlen[c] &lt;&lt; textzahlen[d];
</code></pre>
<p>Zur Erklärung: textzahlen ist ein Array (=Feld) von Strings, textzahlen[0] ist der erste String &quot;null&quot;, textzahlen[1](=&quot;eins&quot;) der zweite usw. Durch die Anordnung kannst du direkt mit textzahlen[meineZahlAlsInt] die entsprechende Zahl als Text bekommen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1801751</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1801751</guid><dc:creator><![CDATA[nwp2]]></dc:creator><pubDate>Sun, 01 Nov 2009 17:03:05 GMT</pubDate></item><item><title><![CDATA[Reply to const char* to char on Sun, 01 Nov 2009 17:17:28 GMT]]></title><description><![CDATA[<p>so schwer kann das doch gar nicht sein...</p>
<pre><code class="language-cpp">const char textzahlen[]={&quot;null&quot;,&quot;eins&quot;,&quot;zwei&quot;,&quot;drei&quot;,&quot;vier&quot;,&quot;fuenf&quot;,&quot;sechs&quot;,&quot;sieben&quot;,&quot;acht&quot;,&quot;neun&quot;};
</code></pre>
<p>ein array aus zeichen?!<br />
nein...<br />
ein array aus einem array aus zeichen:</p>
<pre><code class="language-cpp">const char* textzahlen[]={&quot;null&quot;,&quot;eins&quot;,&quot;zwei&quot;,&quot;drei&quot;,&quot;vier&quot;,&quot;fuenf&quot;,&quot;sechs&quot;,&quot;sieben&quot;,&quot;acht&quot;,&quot;neun&quot;};
//oder
const char* textzahlen[10]={&quot;null&quot;,&quot;eins&quot;,&quot;zwei&quot;,&quot;drei&quot;,&quot;vier&quot;,&quot;fuenf&quot;,&quot;sechs&quot;,&quot;sieben&quot;,&quot;acht&quot;,&quot;neun&quot;};
</code></pre>
<p>bb</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1801762</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1801762</guid><dc:creator><![CDATA[unskilled]]></dc:creator><pubDate>Sun, 01 Nov 2009 17:17:28 GMT</pubDate></item><item><title><![CDATA[Reply to const char* to char on Sun, 01 Nov 2009 17:27:09 GMT]]></title><description><![CDATA[<p>so geht es auch</p>
<pre><code class="language-cpp">const char textzahlen[][sizeof &quot;sieben&quot;]={&quot;null&quot;,&quot;eins&quot;,&quot;zwei&quot;,&quot;drei&quot;,&quot;vier&quot;,&quot;fuenf&quot;,&quot;sechs&quot;,&quot;sieben&quot;,&quot;acht&quot;,&quot;neun&quot;};
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1801768</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1801768</guid><dc:creator><![CDATA[camper]]></dc:creator><pubDate>Sun, 01 Nov 2009 17:27:09 GMT</pubDate></item><item><title><![CDATA[Reply to const char* to char on Sun, 01 Nov 2009 17:36:40 GMT]]></title><description><![CDATA[<p>camper schrieb:</p>
<blockquote>
<pre><code class="language-cpp">[sizeof &quot;sieben&quot;]
</code></pre>
</blockquote>
<p>Gut das der Compiler deutsch kann und weiß, dass sizeof &quot;sieben&quot; 7 ist.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1801773</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1801773</guid><dc:creator><![CDATA[dawatchtower]]></dc:creator><pubDate>Sun, 01 Nov 2009 17:36:40 GMT</pubDate></item><item><title><![CDATA[Reply to const char* to char on Sun, 01 Nov 2009 17:57:17 GMT]]></title><description><![CDATA[<p>Super danke euch.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1801782</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1801782</guid><dc:creator><![CDATA[Brai]]></dc:creator><pubDate>Sun, 01 Nov 2009 17:57:17 GMT</pubDate></item><item><title><![CDATA[Reply to const char* to char on Sun, 01 Nov 2009 23:44:25 GMT]]></title><description><![CDATA[<p>ich find das insgesamt ziemlich umständlich.</p>
<p>Wenn ich das richtig verstehe, soll jemand z.B. 125894 eingeben und &quot;eins, zwei, fünf, acht, neun, vier&quot; erhalten, oder?</p>
<p>da liegt doch die verwendung von switch und einer for-schleife nahe, oder nicht?</p>
<pre><code>int input [6], x;
cout &lt;&lt; &quot;Zahl eingeben (sechsstellig)&quot; &lt;&lt; endl;
cin.getline (input, 6);
for (x = 0 ; x &lt; 6 ; x++)
{
    switch (input[x])
    {
        case 0:
        cout &lt;&lt; &quot;null &quot;;
        break;
        case 1:
        cout &lt;&lt; &quot;eins &quot;;
        break;
        case 2:
        cout &lt;&lt; &quot;zwei &quot;;
        break;
        case 3:
        cout &lt;&lt; &quot;drei &quot;
        break;
        case 4:
        cout &lt;&lt; &quot;vier &quot;;
        break;
        cse 5:
        cout &lt;&lt; &quot;fünf &quot;;
        break;
        case 6:
        cout &lt;&lt; &quot;sechs &quot;;
        break;
        case 7:
        cout &lt;&lt; &quot;sieben &quot;;
        break;
        case 8:
        cout &lt;&lt; &quot;acht &quot;;
        break;
        case 9:
        cout &lt;&lt; &quot;neun &quot;;
        break;
    }
}
cout &lt;&lt; endl;
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1801939</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1801939</guid><dc:creator><![CDATA[kARRE]]></dc:creator><pubDate>Sun, 01 Nov 2009 23:44:25 GMT</pubDate></item><item><title><![CDATA[Reply to const char* to char on Sun, 01 Nov 2009 23:48:17 GMT]]></title><description><![CDATA[<p>geht mit nem array mind. genau so schön und ist wesentlich schneller : P</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1801940</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1801940</guid><dc:creator><![CDATA[unskilled]]></dc:creator><pubDate>Sun, 01 Nov 2009 23:48:17 GMT</pubDate></item><item><title><![CDATA[Reply to const char* to char on Mon, 02 Nov 2009 00:01:49 GMT]]></title><description><![CDATA[<p>du hast recht, es ist schlechter für die performance, aber ich fand den gedankengang mit den hilfsvariablen irgendwie mühseelig.<br />
Und solange das das einzige ist, was das programm machen soll, dürfte das keinen pc zu sehr beanspruchen, oder doch?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1801943</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1801943</guid><dc:creator><![CDATA[kARRE]]></dc:creator><pubDate>Mon, 02 Nov 2009 00:01:49 GMT</pubDate></item><item><title><![CDATA[Reply to const char* to char on Mon, 02 Nov 2009 00:21:06 GMT]]></title><description><![CDATA[<p>kARRE schrieb:</p>
<blockquote>
<p>ich find das insgesamt ziemlich umständlich.</p>
</blockquote>
<p>direkter vergleich</p>
<pre><code class="language-cpp">int input [6], x;
cout &lt;&lt; &quot;Zahl eingeben (sechsstellig)&quot; &lt;&lt; endl;
cin.getline (input, 6);
for (x = 0 ; x &lt; 6 ; x++)
{
    switch (input[x])
    {
        case 0:
        cout &lt;&lt; &quot;null &quot;;
        break;
        case 1:
        cout &lt;&lt; &quot;eins &quot;;
        break;
        case 2:
        cout &lt;&lt; &quot;zwei &quot;;
        break;
        case 3:
        cout &lt;&lt; &quot;drei &quot;
        break;
        case 4:
        cout &lt;&lt; &quot;vier &quot;;
        break;
        cse 5:
        cout &lt;&lt; &quot;fünf &quot;;
        break;
        case 6:
        cout &lt;&lt; &quot;sechs &quot;;
        break;
        case 7:
        cout &lt;&lt; &quot;sieben &quot;;
        break;
        case 8:
        cout &lt;&lt; &quot;acht &quot;;
        break;
        case 9:
        cout &lt;&lt; &quot;neun &quot;;
        break;
    }
}
cout &lt;&lt; endl;
</code></pre>
<pre><code class="language-cpp">int input [6], x;
cout &lt;&lt; &quot;Zahl eingeben (sechsstellig)&quot; &lt;&lt; endl;
cin.getline (input, 6);
for (x = 0 ; x &lt; 6 ; x++)
{
    static const char* textzahlen[10]={&quot;null&quot;,&quot;eins&quot;,&quot;zwei&quot;,&quot;drei&quot;,&quot;vier&quot;,&quot;fuenf&quot;,&quot;sechs&quot;,&quot;sieben&quot;,&quot;acht&quot;,&quot;neun&quot;};
    if(0&lt;=input[x] &amp;&amp; input[x]&lt;=9)
        cout&lt;&lt;textzahlen[input[x&rsqb;&rsqb;;
}
cout &lt;&lt; endl;
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1801944</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1801944</guid><dc:creator><![CDATA[volkard]]></dc:creator><pubDate>Mon, 02 Nov 2009 00:21:06 GMT</pubDate></item><item><title><![CDATA[Reply to const char* to char on Mon, 02 Nov 2009 00:22:45 GMT]]></title><description><![CDATA[<p>der hauptgrund war eigtl nicht die performance sondern eher die Hässlichkeit ;P</p>
<p>Guck mal, geht für jede positive Zahl:<br />
mit 3 Zeilen mehr so gar für jede (ganze) Zahl<br />
und wenn man dann noch will, kann man für noch 3 Zeilen mehr auch noch für alle anderen zahlen machen</p>
<pre><code class="language-cpp">void print_to_cout(unsigned int value)
{
  static const char* zahlen = {&quot;null&quot;, &quot;eins&quot;, &quot;zwei&quot;, &quot;drei&quot;, &quot;vier&quot;, &quot;fuenf&quot;, &quot;sechs&quot;, &quot;sieben&quot;, &quot;acht&quot;, &quot;neun&quot;};

  if(i == 0)
    return;

  unsigned int these = value%10;
  print_to_cout(value/10);
  std::cout &lt;&lt; zahlen[these] &lt;&lt; &quot; &quot;;
}

int main()
{
  unsigned int i;
  std::cin &gt;&gt; i;
  print_to_cout(i);
}
</code></pre>
<p>bb</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1801945</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1801945</guid><dc:creator><![CDATA[unskilled]]></dc:creator><pubDate>Mon, 02 Nov 2009 00:22:45 GMT</pubDate></item></channel></rss>