<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Jetzt lerne ich programmieren &#187; helloworld</title>
	<atom:link href="http://www.jlip.de/tag/helloworld/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jlip.de</link>
	<description>oder so ähnlich...</description>
	<lastBuildDate>Thu, 29 Oct 2009 13:03:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Das erste Programm in C</title>
		<link>http://www.jlip.de/das-erste-programm-in-c/</link>
		<comments>http://www.jlip.de/das-erste-programm-in-c/#comments</comments>
		<pubDate>Sat, 26 Sep 2009 12:13:39 +0000</pubDate>
		<dc:creator>Harun admin</dc:creator>
				<category><![CDATA[C]]></category>
		<category><![CDATA[coden]]></category>
		<category><![CDATA[helloworld]]></category>

		<guid isPermaLink="false">http://www.jlip.de/?p=46</guid>
		<description><![CDATA[Das erste Programm und das einfachste. Es soll die Ausgabe &#8220;Hello World&#8221; erzeugt werden. Wie immer fangen wir mit den Kopfangaben an und danach includen wir die standard Befehle. /* Harun Hello World 26.09.09 */ #include #include void main(void) { printf("Hello World"); getch(); } Mit getch(); erreichen wr, dass das Programm am Ende auf eine [...]]]></description>
			<content:encoded><![CDATA[<p>Das erste Programm und das einfachste. Es soll die Ausgabe &#8220;Hello World&#8221; erzeugt werden. Wie immer fangen wir mit den Kopfangaben an und danach includen wir die standard Befehle.<span id="more-46"></span></p>
<pre lang="cpp">/*
Harun
Hello World
26.09.09
*/
#include <stdio.h>
#include <conio.h>

void main(void)
{
    printf("Hello World");
    getch();
}</pre>
<p>Mit getch(); erreichen wr, dass das Programm am Ende auf eine Eingabe wartet und dann schließt. So können wir das Ergebniss betrachten. Ihr könnt es ja mal ohne probieren <img src='http://harun2.alfahosting.org/jlip.de/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Der Befehl <span style="color: #00ff00;">printf </span>erzeugt eine Bildschirmausgabe. Alles dazwischen packen wir in (&#8220;&#8230;..&#8221;) ein. Und wie immer schließen wir den Befehl mit ; ab.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jlip.de/das-erste-programm-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
