<?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[Global Variables klappt nicht]]></title><description><![CDATA[<p>Hallo erstmal!</p>
<p>Bin neu hier im Forum und bin gerade dabei C++ einigermaßen zu lernen.<br />
Lese derzeit ein Buch namens &quot;C++ from the Ground Up ~ 3rd Edition&quot; von Herbert Schildt.</p>
<p>Und zwar habe ich folgendes Problem:</p>
<pre><code class="language-cpp">#include &lt;iostream&gt;
using namespace std;

void func1();
void func2();

int count; // this is a global variable

int main()
{
int i; // this is a local variable
for(i=0; i&lt;10; i++) {
count = i * 2;
func1();
}
return 0;
}

void func1()
{
cout &lt;&lt; &quot;count: &quot; &lt;&lt; count; // access global count
cout &lt;&lt; '\n'; // output a newline
func2();
}

void func2()
{
int count; // this is a local variable
for(count=0; count&lt;3; count++) cout &lt;&lt; '.';
}
</code></pre>
<p>Aus irgendeinem Grund kann ich nicht debuggen. In der Fehlermeldung steht das ich nirgendswo &quot;count&quot; deklariert habe. Aber das habe ich doch in Zeile sieben!</p>
<p>Danke!<br />
Aydo <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="🙂"
    /> <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/topic/254365/global-variables-klappt-nicht</link><generator>RSS for Node</generator><lastBuildDate>Sun, 13 Sep 2026 00:08:57 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/254365.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 15 Nov 2009 15:52:18 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Global Variables klappt nicht on Sun, 15 Nov 2009 15:52:18 GMT]]></title><description><![CDATA[<p>Hallo erstmal!</p>
<p>Bin neu hier im Forum und bin gerade dabei C++ einigermaßen zu lernen.<br />
Lese derzeit ein Buch namens &quot;C++ from the Ground Up ~ 3rd Edition&quot; von Herbert Schildt.</p>
<p>Und zwar habe ich folgendes Problem:</p>
<pre><code class="language-cpp">#include &lt;iostream&gt;
using namespace std;

void func1();
void func2();

int count; // this is a global variable

int main()
{
int i; // this is a local variable
for(i=0; i&lt;10; i++) {
count = i * 2;
func1();
}
return 0;
}

void func1()
{
cout &lt;&lt; &quot;count: &quot; &lt;&lt; count; // access global count
cout &lt;&lt; '\n'; // output a newline
func2();
}

void func2()
{
int count; // this is a local variable
for(count=0; count&lt;3; count++) cout &lt;&lt; '.';
}
</code></pre>
<p>Aus irgendeinem Grund kann ich nicht debuggen. In der Fehlermeldung steht das ich nirgendswo &quot;count&quot; deklariert habe. Aber das habe ich doch in Zeile sieben!</p>
<p>Danke!<br />
Aydo <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="🙂"
    /> <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/1808382</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1808382</guid><dc:creator><![CDATA[Aydo]]></dc:creator><pubDate>Sun, 15 Nov 2009 15:52:18 GMT</pubDate></item><item><title><![CDATA[Reply to Global Variables klappt nicht on Sun, 15 Nov 2009 16:09:07 GMT]]></title><description><![CDATA[<p>vermutlich liegt das daran, dass du die Variable count 2x dekleriert hast, 1x in Zeile 7 und in func 2.<br />
(auch wenn es bei mir trotzddem fehlerfrei compilert.)</p>
<p>du könntest zB mal versuchen die in func2 einfach count2 zu nennen:</p>
<pre><code class="language-cpp">#include &lt;iostream&gt; 
using namespace std; 

void func1(); 
void func2(); 

int count; // this is a global variable 

int main() 
{ 
int i; // this is a local variable 
for(i=0; i&lt;10; i++) { 
count = i * 2; 
func1(); 
} 
return 0; 
} 

void func1() 
{ 
cout &lt;&lt; &quot;count: &quot; &lt;&lt; count; // access global count 
cout &lt;&lt; '\n'; // output a newline 
func2(); 
} 

void func2() 
{ 
int count2; // this is a local variable 
for(count2=0; count2&lt;3; count2++) cout &lt;&lt; '.'; 
}
</code></pre>
<p>mfg,<br />
andi01.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1808386</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1808386</guid><dc:creator><![CDATA[andi01]]></dc:creator><pubDate>Sun, 15 Nov 2009 16:09:07 GMT</pubDate></item><item><title><![CDATA[Reply to Global Variables klappt nicht on Sun, 15 Nov 2009 16:08:40 GMT]]></title><description><![CDATA[<p>C:\Users\... In function <code>int main()': C:\\Users\\...</code>count' undeclared (first use this function)<br />
(Each undeclared identifier is reported only once for each function it appears in.)<br />
C:\Users\... In function <code>void func1()': C:\\Users\\...</code>count' undeclared (first use this function)</p>
<p>Ich benutze DEV-C++, könnte es vllt. daran liegen?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1808387</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1808387</guid><dc:creator><![CDATA[Aydo]]></dc:creator><pubDate>Sun, 15 Nov 2009 16:08:40 GMT</pubDate></item><item><title><![CDATA[Reply to Global Variables klappt nicht on Sun, 15 Nov 2009 16:11:30 GMT]]></title><description><![CDATA[<p>Aydo schrieb:</p>
<blockquote>
<p>Ich benutze DEV-C++, könnte es vllt. daran liegen?</p>
</blockquote>
<p>Könnte sein - ist auf jeden Fall ne veraltete IDE - gab in letzter Zeit (so gar hier im Forum) immer mal wieder wirklich gute Gründe, auf DEV-C++ zu verzichten^^<br />
alternativen: Visual Studio Express, Code::Blocks, netbeans, ...</p>
<p>bb</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1808389</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1808389</guid><dc:creator><![CDATA[unskilled]]></dc:creator><pubDate>Sun, 15 Nov 2009 16:11:30 GMT</pubDate></item><item><title><![CDATA[Reply to Global Variables klappt nicht on Sun, 15 Nov 2009 16:12:56 GMT]]></title><description><![CDATA[<p>vielleicht, dev c++ ist ein veralteter compiler der nicht mehr weiterentwickelt wird. Ich benutze Microsoft Visual C++ 2008 Express Edition, da geht der obige code fehlerfrei. der compiler zB ist neu und relativ bugfrei im vergleich zu dev.</p>
<p>versuche aber erstmal den obigen korrigierten code, du hattest nämlich count 2x dekleriert. einfach mal mit diesem code probieren <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>
<p>mfg,<br />
andi01.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1808390</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1808390</guid><dc:creator><![CDATA[andi01]]></dc:creator><pubDate>Sun, 15 Nov 2009 16:12:56 GMT</pubDate></item><item><title><![CDATA[Reply to Global Variables klappt nicht on Sun, 15 Nov 2009 16:12:50 GMT]]></title><description><![CDATA[<p>andi01 schrieb:</p>
<blockquote>
<p>vielleicht, dev c++ ist ein veralteter compiler der nicht mehr weiterentwickelt wird.</p>
<p>versuche aber erstmal den obigen korrigierten code, du hattest nämlich count 2x dekleriert. einfach mal mit diesem code probieren <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>
<p>mfg,<br />
andi01.</p>
</blockquote>
<p>ne, der war scho korrekt - count wurde dann halt in der fkt von der lokal deklarierten variable überdeckt...<br />
sieht mir definitiv nach nem dev-c++ bug aus</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1808394</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1808394</guid><dc:creator><![CDATA[unskilled]]></dc:creator><pubDate>Sun, 15 Nov 2009 16:12:50 GMT</pubDate></item><item><title><![CDATA[Reply to Global Variables klappt nicht on Sun, 15 Nov 2009 16:17:50 GMT]]></title><description><![CDATA[<p>jo, hab ich oben grade editiert^^</p>
<p>dev is echt buggy...</p>
<p>ich habe MS Visual C++ 2008 Express Edition, relativ bugfrei. der compiler wäre zB empfehlenswert <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f44d.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--thumbs_up"
      title=":+1:"
      alt="👍"
    /></p>
<p>falls du bei dev c++ bleiben willst nimm meinen verbesserten code.</p>
<p>mfg,<br />
andi01.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1808395</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1808395</guid><dc:creator><![CDATA[andi01]]></dc:creator><pubDate>Sun, 15 Nov 2009 16:17:50 GMT</pubDate></item><item><title><![CDATA[Reply to Global Variables klappt nicht on Sun, 15 Nov 2009 16:15:55 GMT]]></title><description><![CDATA[<p>@ andi01<br />
Mit der Änderung klappt es leider immernoch nicht.<br />
Habe zwar Visual C++ 2008 aufm Rechner, benutzt habe ich es jedoch nicht weil ich beim Debuggen immer irgend einen Link eintragen musste und so.</p>
<p>Danke mal das das an DEV-C++ liegt, weil es im Buch ja auch geht:</p>
<blockquote>
<p>Global Variables<br />
You may be wondering how to make a variable and its data stay in existence throughout<br />
the entire execution of your program. You can do this in C++ by using a global variable.<br />
Unlike local variables, global variables will hold their value throughout the lifetime of<br />
your program. You create global variables by declaring them outside of all functions.<br />
A global variable can be accessed by any function. That is, a global variable is available<br />
for use throughout your entire program.<br />
In the following program, you can see that the variable count has been declared<br />
outside of all functions. Its declaration is before the main( ) function. However, it<br />
could have been placed anywhere, as long as it was not in a function. Remember,<br />
though, that since you must declare a variable before you use it, it is best to declare<br />
global variables at the top of the program.</p>
<pre><code class="language-cpp">#include &lt;iostream&gt;
using namespace std;
void func1();
void func2();
int count; // this is a global variable
int main()
{
int i; // this is a local variable
for(i=0; i&lt;10; i++) {
count = i * 2;
func1();
}
return 0;
}
void func1()
{
cout &lt;&lt; &quot;count: &quot; &lt;&lt; count; // access global count
cout &lt;&lt; '\n'; // output a newline
func2();
}
void func2()
{
int count; // this is a local variable
for(count=0; count&lt;3; count++) cout &lt;&lt; '.';
}
</code></pre>
<p>Looking closely at this program, it should be clear that although neither main( ) nor<br />
func1( ) has declared the variable count, both may use it. In func2( ), however, a<br />
local variable called count is declared. When func2( ) uses count, it is referring to<br />
its local variable, not the global one. It is important to remember that if a global variable<br />
and a local variable have the same name, all references to that variable name inside<br />
the function in which the local variable is declared will refer to the local variable and<br />
not to the global variable.</p>
</blockquote>
]]></description><link>https://www.c-plusplus.net/forum/post/1808397</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1808397</guid><dc:creator><![CDATA[Aydo]]></dc:creator><pubDate>Sun, 15 Nov 2009 16:15:55 GMT</pubDate></item><item><title><![CDATA[Reply to Global Variables klappt nicht on Sun, 15 Nov 2009 16:34:34 GMT]]></title><description><![CDATA[<p>Ziel der Übung sollte vermutlich nur sein folgendes zu verstehen:<br />
wird die variable außerhalb einer Funktion dekleriert ist sie global:</p>
<pre><code class="language-cpp">int globale_variable;

int main()
{
return 0;
}
</code></pre>
<p>lokale Variable:</p>
<pre><code class="language-cpp">int main()
{
int lokale_variable;
return 0;
}
</code></pre>
<p>Unterschied globale/lokale Variable:</p>
<p>Die lokale Variable wird nachdem die Funktion, in der sie dekleriert wurde, beendet ist wieder gelöscht und ist auch in keiner anderen Funktion verfügbar, deklerierst du sie zB in main kannst du innerhalb von func1 nicht darauf zugreifen.<br />
Die globale variable ist, wie der Name schon sagt, global, d.h. in alle funktionen, verfügbar und wird erst nach Programmende gelöscht.</p>
<p>hier mal ein Beispiel, anhand dessen man den Sinn einer globalen Variablen besser versteht und das auh funktioniert:</p>
<pre><code class="language-cpp">#include&lt;iostream&gt;
#include&lt;conio.h&gt;
using namespace std;

void func1();

int globale_variable=1;

int main()
{
cout&lt;&lt;&quot;Wert der globalen Variablen: &quot;&lt;&lt;globale_variable&lt;&lt;endl;/*hier wird 1 ausgegeben, das funktioniert, weil diese variable in allen funktionen verfügbar (global) ist*/

int lokale_Variable=0;
cout&lt;&lt;lokale_variable&lt;&lt;endl;/*das funktioniert, denn wir befinden uns hier innerhalb der Funktion, in der lokale_variable dekleriert wurde (main)*/

func1();
}

void func1()
{
cout&lt;&lt;globale_variable;/* das funktioniert, da die Variable in allen Funktionen verfügbar ist, eben global*/

/*
folgendes würde eine Fehlermeldung produzieren:

cout&lt;&lt;lokale_variable;

denn:  lokale:variable wurde in main dekleriert, hier sind wir aber außerhab von main()!*/
}
</code></pre>
<p>mfg,<br />
andi01.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1808405</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1808405</guid><dc:creator><![CDATA[andi01]]></dc:creator><pubDate>Sun, 15 Nov 2009 16:34:34 GMT</pubDate></item><item><title><![CDATA[Reply to Global Variables klappt nicht on Sun, 15 Nov 2009 16:35:52 GMT]]></title><description><![CDATA[<p>Danke Andi!</p>
<p>Habs jetzt mal mit Visual C++ 2008 gestartet (also die .cpp Datei).</p>
<p>WIll jetzt keinen neuen thread eröffnen, also frage ich mal hier:</p>
<p>Wieso kann ich meine Datei nicht einfach debuggen? Oben kann ich nicht drauf drücken.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1808409</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1808409</guid><dc:creator><![CDATA[Aydo]]></dc:creator><pubDate>Sun, 15 Nov 2009 16:35:52 GMT</pubDate></item><item><title><![CDATA[Reply to Global Variables klappt nicht on Sun, 15 Nov 2009 16:36:28 GMT]]></title><description><![CDATA[<p>Aydo schrieb:</p>
<blockquote>
<p>@ andi01<br />
Mit der Änderung klappt es leider immernoch nicht.<br />
Habe zwar Visual C++ 2008 aufm Rechner, benutzt habe ich es jedoch nicht weil ich beim Debuggen immer irgend einen Link eintragen musste und so.</p>
</blockquote>
<p>Da machst du sicherlich was falsch^^<br />
Eigtl muss man nur nen Haltepkt setzen und dann gucken, was passiert ;o)</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1808410</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1808410</guid><dc:creator><![CDATA[unskilled]]></dc:creator><pubDate>Sun, 15 Nov 2009 16:36:28 GMT</pubDate></item><item><title><![CDATA[Reply to Global Variables klappt nicht on Sun, 15 Nov 2009 16:42:31 GMT]]></title><description><![CDATA[<p><a href="http://msdn.microsoft.com/de-de/library/ms235629.aspx" rel="nofollow">http://msdn.microsoft.com/de-de/library/ms235629.aspx</a></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1808413</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1808413</guid><dc:creator><![CDATA[loks]]></dc:creator><pubDate>Sun, 15 Nov 2009 16:42:31 GMT</pubDate></item><item><title><![CDATA[Reply to Global Variables klappt nicht on Sun, 15 Nov 2009 16:44:14 GMT]]></title><description><![CDATA[<p>der compiler ist in der handhabung etwas komplizierter.</p>
<p>das ganze geht so:</p>
<p>1.neues projekt erstellen:<br />
-programm öffnen<br />
-datei-&gt;hinzufügen-&gt;neuesProjekt<br />
-namen und speicherort eingeben -&gt;ok<br />
-weiter<br />
-vorkompilertes header auswählen<br />
-fertig stellen</p>
<p>2.die richtige .cpp-datei öffnet sich<br />
[wenn nicht: wenn dein projekt zB test heißt, rechts im projektmappenexplorer doppelklich auf test.cpp machen]</p>
<p>3.#include&quot;stdfax.h&quot; MUSS stehen bleiben!</p>
<p>4.Code darunter einfügen</p>
<p>5. zum debuggen F5 drücken oder auf den grünen pfeil in der Kopfleiste klicken</p>
<p><strong>was das mit deinem code betrifft: ich werde dn mal eben etwas umschreiben sodass er sicher funktioniert und dann posten^^</strong></p>
<p>mfg,<br />
andi01.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1808414</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1808414</guid><dc:creator><![CDATA[andi01]]></dc:creator><pubDate>Sun, 15 Nov 2009 16:44:14 GMT</pubDate></item><item><title><![CDATA[Reply to Global Variables klappt nicht on Sun, 15 Nov 2009 16:50:36 GMT]]></title><description><![CDATA[<p>ne - einfach mal erstellen -&gt; &quot;empty project&quot;<br />
dann hat man auch keinen pch an der backe, obwohl man ihn nicht braucht - spart wieder die klicks zum deaktivieren - und man braucht eben nicht wissen, wie man ihn deaktiviert</p>
<p>bb</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1808418</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1808418</guid><dc:creator><![CDATA[unskilled]]></dc:creator><pubDate>Sun, 15 Nov 2009 16:50:36 GMT</pubDate></item><item><title><![CDATA[Reply to Global Variables klappt nicht on Sun, 15 Nov 2009 17:14:53 GMT]]></title><description><![CDATA[<p>das geht auch^^</p>
<p>zum code:<br />
so sollte er sicher funktionieren und auch verständlicher sein:</p>
<pre><code class="language-cpp">#include&lt;iostream&gt;
#include&lt;conio.h&gt;
using namespace std;

int count;

void func();

int main(
{
	for(int a=0;a&lt;10;a++)
	{
		count=a*2;
		func();
	}
	getch();
}

void func()
{
	cout&lt;&lt;&quot;... count: &quot;&lt;&lt;count&lt;&lt;endl;
}
</code></pre>
<p>dabei kommt auch das eigentliche ziel des Codes viel besser heraus:</p>
<p>Eigentlich soll hier nur verstanden werden, dass die variable a aus der for-schleife sobald diese verlasen wird gelöscht wird und man auch nur innerhalb der schleife darauf zugreifen kann.<br />
Auf die globale Variable count kann jedoch auch in func() zugegriffen werden weil sie global ist.</p>
<p>funktioniert mein code oben jetzt eigentlich auch bei dir unter dev c++?</p>
<p>mfg,<br />
andi01.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1808420</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1808420</guid><dc:creator><![CDATA[andi01]]></dc:creator><pubDate>Sun, 15 Nov 2009 17:14:53 GMT</pubDate></item><item><title><![CDATA[Reply to Global Variables klappt nicht on Sun, 15 Nov 2009 17:07:35 GMT]]></title><description><![CDATA[<p>ne...</p>
<p>andi01 schrieb:</p>
<blockquote>
<pre><code class="language-cpp">#include &quot;stdafx.h&quot; //unnötig

int _tmain(int argc, _TCHAR* argv[]) //argc/argv = unnötig, _tmain nicht standardkonform
</code></pre>
</blockquote>
<p>nur weil du nich empty project nehmen willst, nimmst du also lieber son dreck, der auf anderen compilern nicht kompilieren wird!? gj</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1808431</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1808431</guid><dc:creator><![CDATA[unskilled]]></dc:creator><pubDate>Sun, 15 Nov 2009 17:07:35 GMT</pubDate></item><item><title><![CDATA[Reply to Global Variables klappt nicht on Sun, 15 Nov 2009 20:58:57 GMT]]></title><description><![CDATA[<p>empty project ist ja auch besser.</p>
<p>dazu macht man fast alles wie oben, nur dass man eben nach dem projekterstellen folgendes tun muss:</p>
<p>rechtsklick auf das projekt, hinzufügen-&gt;neue quelldatei, .cpp-datei auswählen, namen eingeben, ok, doppelklick drauf.</p>
<p>edit: so, erledigt.</p>
<p><strong><a class="plugin-mentions-user plugin-mentions-a" href="https://www.c-plusplus.net/forum/uid/23491">@Aydo</a>: funktioniert es jetzt?</strong></p>
<p>mfg,<br />
andi01.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1808434</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1808434</guid><dc:creator><![CDATA[andi01]]></dc:creator><pubDate>Sun, 15 Nov 2009 20:58:57 GMT</pubDate></item></channel></rss>