<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Kommentare zu: Variablen und Konstante in C</title>
	<atom:link href="http://www.jlip.de/c/variablen-und-konstante-in-c/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jlip.de/c/variablen-und-konstante-in-c/</link>
	<description>oder so ähnlich</description>
	<lastBuildDate>Tue, 25 May 2010 22:43:04 +0200</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Von: BackRaw</title>
		<link>http://www.jlip.de/c/variablen-und-konstante-in-c/comment-page-1/#comment-12</link>
		<dc:creator>BackRaw</dc:creator>
		<pubDate>Sun, 27 Sep 2009 10:25:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.jlip.de/?p=133#comment-12</guid>
		<description>achja stimmt... xD war bei C++ und &quot;cout&quot; xD sry</description>
		<content:encoded><![CDATA[<p>achja stimmt&#8230; xD war bei C++ und &#8220;cout&#8221; xD sry</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: Harun (admin)</title>
		<link>http://www.jlip.de/c/variablen-und-konstante-in-c/comment-page-1/#comment-11</link>
		<dc:creator>Harun (admin)</dc:creator>
		<pubDate>Sun, 27 Sep 2009 10:22:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.jlip.de/?p=133#comment-11</guid>
		<description>Anstatt void main(void)  geht manchmal int main(void)</description>
		<content:encoded><![CDATA[<p>Anstatt void main(void)  geht manchmal int main(void)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: Harun (admin)</title>
		<link>http://www.jlip.de/c/variablen-und-konstante-in-c/comment-page-1/#comment-10</link>
		<dc:creator>Harun (admin)</dc:creator>
		<pubDate>Sun, 27 Sep 2009 10:19:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.jlip.de/?p=133#comment-10</guid>
		<description>@ Popoklopsi
Das kann auch noch nicht funktioniern :) Das mit dem Enter stimmt \n

printf(i); geht nicht.. man muss zuerst dem Programm klarmachen, dass jetzt eine Zahl kommt.

In der nächsten Lektion kommt dies dran.</description>
		<content:encoded><![CDATA[<p>@ Popoklopsi<br />
Das kann auch noch nicht funktioniern <img src='http://www.jlip.de/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Das mit dem Enter stimmt \n</p>
<p>printf(i); geht nicht.. man muss zuerst dem Programm klarmachen, dass jetzt eine Zahl kommt.</p>
<p>In der nächsten Lektion kommt dies dran.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: BackRaw</title>
		<link>http://www.jlip.de/c/variablen-und-konstante-in-c/comment-page-1/#comment-7</link>
		<dc:creator>BackRaw</dc:creator>
		<pubDate>Sun, 27 Sep 2009 10:12:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.jlip.de/?p=133#comment-7</guid>
		<description>&lt;pre lang=&quot;CPP&quot;&gt;printf(&quot;Hello World\n&quot;);&lt;/pre&gt;macht ein &quot;Enter&quot; dazwischen, würd ich ma sagen. Aufgehangen? Bei mir funzts^^</description>
		<content:encoded><![CDATA[<pre lang="CPP">printf("Hello World\n");</pre>
<p>macht ein &#8220;Enter&#8221; dazwischen, würd ich ma sagen. Aufgehangen? Bei mir funzts^^</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: Popoklopsi(uedi)</title>
		<link>http://www.jlip.de/c/variablen-und-konstante-in-c/comment-page-1/#comment-5</link>
		<dc:creator>Popoklopsi(uedi)</dc:creator>
		<pubDate>Sun, 27 Sep 2009 07:39:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.jlip.de/?p=133#comment-5</guid>
		<description>Ach ja und wie mache ich ein ENTER dazwischen, weil sonst schreibts sich dauernd untereinander :)</description>
		<content:encoded><![CDATA[<p>Ach ja und wie mache ich ein ENTER dazwischen, weil sonst schreibts sich dauernd untereinander <img src='http://www.jlip.de/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: Popoklopsi(uedi)</title>
		<link>http://www.jlip.de/c/variablen-und-konstante-in-c/comment-page-1/#comment-4</link>
		<dc:creator>Popoklopsi(uedi)</dc:creator>
		<pubDate>Sun, 27 Sep 2009 07:36:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.jlip.de/?p=133#comment-4</guid>
		<description>Hey hab da ma ne Frage
undzwar, so siehts bei mir aus:

void main(void)
{
  printf(&quot;Hello World&quot;);
  int i=236;
  printf(i);
  getch();
}

komplieren tut es, aber wenn ich öffne kommt, projekt2.exe hat sich aufgehangen, an was kann das liegen?</description>
		<content:encoded><![CDATA[<p>Hey hab da ma ne Frage<br />
undzwar, so siehts bei mir aus:</p>
<p>void main(void)<br />
{<br />
  printf(&#8221;Hello World&#8221;);<br />
  int i=236;<br />
  printf(i);<br />
  getch();<br />
}</p>
<p>komplieren tut es, aber wenn ich öffne kommt, projekt2.exe hat sich aufgehangen, an was kann das liegen?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
