<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>The R1zq's Institute - Exploring Your iDea</title>
	<atom:link href="http://r1zq.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://r1zq.wordpress.com</link>
	<description>Just share knowledge on the net.</description>
	<lastBuildDate>Sun, 29 Jun 2008 17:21:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='r1zq.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>The R1zq's Institute - Exploring Your iDea</title>
		<link>http://r1zq.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://r1zq.wordpress.com/osd.xml" title="The R1zq&#039;s Institute - Exploring Your iDea" />
	<atom:link rel='hub' href='http://r1zq.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Inheritance &#8211; Newbie @ C Language eps 15</title>
		<link>http://r1zq.wordpress.com/2008/06/29/inheritance-newbie-c-language-eps-15/</link>
		<comments>http://r1zq.wordpress.com/2008/06/29/inheritance-newbie-c-language-eps-15/#comments</comments>
		<pubDate>Sun, 29 Jun 2008 17:16:53 +0000</pubDate>
		<dc:creator>r1zq</dc:creator>
				<category><![CDATA[C / C++ Family Language]]></category>

		<guid isPermaLink="false">http://r1zq.wordpress.com/?p=98</guid>
		<description><![CDATA[#include&#60;iostream.h&#62; #include&#60;conio.h&#62; class Basis { private : int alpha; //sementara belum terpakai int bravo; //sementara belum terpakai public : void info_basis() { cout&#60;&#60;&#8221; Info_basis() dijalankan &#8230;&#8221;&#60;&#60;endl; cout&#60;&#60;&#8221; \n&#8221;; } }; class Turunan : public Basis { public : void info_turunan() { cout&#60;&#60;&#8221; Info_turunan() dijalankan &#8230;&#8221;&#60;&#60;endl; } }; void main() { clrscr(); Turunan anak; anak.info_basis(); //mewarisi [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=r1zq.wordpress.com&amp;blog=1481782&amp;post=98&amp;subd=r1zq&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>#include&lt;iostream.h&gt;<br />
#include&lt;conio.h&gt;</p>
<p>class Basis<br />
{<br />
private :<br />
int alpha;<span style="color:#0000ff;"> <span>//sementara belum terpakai </span></span><br />
int bravo; <span style="color:#0000ff;">//sementara belum terpakai </span><br />
public :<br />
void info_basis()<br />
{<br />
cout&lt;&lt;&#8221; Info_basis() dijalankan &#8230;&#8221;&lt;&lt;endl;<br />
cout&lt;&lt;&#8221; \n&#8221;;<br />
}<br />
};<br />
class Turunan : public Basis<br />
{<br />
public :<br />
void info_turunan()<br />
{<br />
cout&lt;&lt;&#8221; Info_turunan() dijalankan &#8230;&#8221;&lt;&lt;endl;<br />
}<br />
};<br />
void main()<br />
{<br />
clrscr();</p>
<p>Turunan anak;</p>
<p>anak.info_basis();<span style="color:#3366ff;"> <span style="color:#0000ff;">//mewarisi kelas basis </span></span><br />
anak.info_turunan();<br />
}</p>
<p>===========================================================================*</p>
<p>#include&lt;iostream.h&gt;<br />
#include&lt;conio.h&gt;</p>
<p>class Basis<br />
{<br />
protected:<br />
int alpha;<br />
int bravo;<br />
public :<br />
void info_basis()<br />
{<br />
cout&lt;&lt;&#8221; Info_basis() dijalankan &#8230;&#8221;&lt;&lt;endl;<br />
}<br />
};<br />
class Turunan : public Basis<br />
{<br />
public :<br />
void inisialisasi(int x,int y)<br />
{ alpha = x; bravo = y;}<br />
void info_turunan()<br />
{<br />
cout&lt;&lt;&#8221; Info_turunan() dijalankan &#8230;&#8221;&lt;&lt;endl;<br />
cout&lt;&lt;&#8221;\n&#8221;;<br />
cout&lt;&lt;&#8221; ALPHA = &#8220;&lt;&lt;alpha&lt;&lt;&#8221;\n\n&#8221;<br />
&lt;&lt;&#8221; BRAVO = &#8220;&lt;&lt;bravo&lt;&lt;endl;<br />
}<br />
};<br />
void main()<br />
{<br />
clrscr();</p>
<p>Turunan anak;</p>
<p>anak.inisialisasi(7, 10); <span style="color:#0000ff;">//alpha &lt;- 7, bravo &lt;- 10 </span><br />
anak.info_turunan();</p>
<p>}</p>
<p>============================================================================*</p>
<p>#include&#8221;iostream.h&#8221;<br />
class makhluk<br />
{<br />
public:<br />
void berkembang();<br />
};<br />
class hewan : public makhluk<br />
{<br />
public:<br />
void bergerak();<br />
};<br />
class kuda : public hewan<br />
{<br />
public:<br />
void berlari();<br />
};<br />
main()<br />
{<br />
makhluk mk;  hewan hw;  kuda kd;<br />
cout&lt;&lt;endl&lt;&lt;&#8221; Sifat-sifat dari Makhluk adalah : &#8220;&lt;&lt;endl;<br />
mk.berkembang();<br />
cout&lt;&lt;endl&lt;&lt;&#8221; Sifat-sifat dari Hewan adalah : &#8220;&lt;&lt;endl;<br />
hw.berkembang();  hw.bergerak();<br />
cout&lt;&lt;endl&lt;&lt;&#8221; Sifat-sifat dari Kuda adalah : &#8220;&lt;&lt;endl;<br />
mk.berkembang();  hw.bergerak();  kd.berlari();<br />
}<br />
void makhluk::berkembang()<br />
{<br />
cout&lt;&lt;&#8221; Berkembang biak&#8221;&lt;&lt;endl;<br />
}<br />
void hewan::bergerak()<br />
{<br />
cout&lt;&lt;&#8221; Bergerak berpindah tempat&#8221;&lt;&lt;endl;<br />
}<br />
void kuda::berlari()</p>
<p>====================================================================*</p>
<p>#include&#8221;iostream.h&#8221;</p>
<p>class kuda<br />
{<br />
public :<br />
void berlari()<br />
{<br />
cout&lt;&lt;&#8221; &gt; Berlarinya sangat cepat&#8221;&lt;&lt;endl;<br />
}<br />
};<br />
class burung<br />
{<br />
public:<br />
void terbang()<br />
{<br />
cout&lt;&lt;&#8221; &gt; Terbang menembus awan&#8221;&lt;&lt;endl;<br />
}<br />
};<br />
class pegasus: public kuda, public burung<br />
{<br />
public:<br />
void lariterbang()<br />
{<br />
cout&lt;&lt;&#8221; &gt; Bersayap, lari dan dapat terbang ke angkasa&#8221;&lt;&lt;endl;<br />
}<br />
};<br />
main()<br />
{<br />
pegasus pg;<br />
cout&lt;&lt;&#8221;Sifat dari PEGASUS yaitu : &#8220;&lt;&lt;endl;<br />
pg.berlari();<br />
pg.terbang();<br />
pg.lariterbang();<br />
}</p>
<p>=====================================================================================*</p>
<p>#include&#8221;iostream.h&#8221;<br />
class hewan<br />
{<br />
public:<br />
void bergerak()<br />
{<br />
cout&lt;&lt;&#8221; # Bergerak berpindah tempat&#8221;&lt;&lt;endl;<br />
}<br />
};<br />
class kuda: virtual public hewan<br />
{<br />
public :<br />
void berlari()<br />
{<br />
cout&lt;&lt;&#8221; # Berlarinya sangat cepat&#8221;&lt;&lt;endl;<br />
}<br />
};<br />
class burung: virtual public hewan<br />
{<br />
public:<br />
void terbang()<br />
{<br />
cout&lt;&lt;&#8221; # Terbang menembus awan&#8221;&lt;&lt;endl;<br />
}<br />
};<br />
class pegasus: public kuda, public burung<br />
{<br />
public:<br />
void lariterbang()<br />
{<br />
cout&lt;&lt;&#8221; # Bersayap, lari dan dapat terbang ke angkasa&#8221;&lt;&lt;endl;<br />
}<br />
};<br />
main()<br />
{<br />
pegasus pg;<br />
cout&lt;&lt;&#8221;&gt;&gt; Sifat dari PEGASUS &lt;&lt; &#8220;&lt;&lt;endl;<br />
cout&lt;&lt;&#8221;========================&#8221;&lt;&lt;endl;<br />
pg.bergerak();  pg.berlari();  pg.terbang();  pg.lariterbang();<br />
}</p>
<p>=================================================================================*</p>
<p>#include&#8221;iostream.h&#8221;<br />
#include&#8221;conio.h&#8221;<br />
#include&#8221;string.h&#8221;<br />
class Kendaraan<br />
{<br />
private:<br />
char nama[15];</p>
<p>public:<br />
Kendaraan(char *nama_kendaraan = &#8220;T1AS&#8221;)<br />
{<br />
strcpy(nama, nama_kendaraan);<br />
cout&lt;&lt;&#8221; Hidupkan mesin kendaraan anda &#8230;&#8221;&lt;&lt;endl;<br />
}<br />
~Kendaraan()<br />
{<br />
cout&lt;&lt;&#8221; Matikan mesin kendaraan anda &#8230;&#8221;&lt;&lt;endl;<br />
}<br />
void info_kendaraan()<br />
{<br />
cout&lt;&lt;nama&lt;&lt;&#8221; Sedang berjalan &#8230;&#8221;&lt;&lt;endl;<br />
}<br />
};<br />
class Mercy : public Kendaraan<br />
{<br />
public:<br />
Mercy(char *nama_mercy) : Kendaraan(nama_mercy)<br />
{<br />
cout&lt;&lt;&#8221; Hidupkan mesin mobil merah &#8230;&#8221;&lt;&lt;endl;<br />
}<br />
~Mercy()<br />
{<br />
cout&lt;&lt;&#8221; Matikan mesin mobil merah itu &#8230;&#8221;&lt;&lt;endl;<br />
}<br />
};<br />
void main()<br />
{<br />
clrscr();<br />
Mercy mewah(&#8221; Mobil Yang Mewah&#8221;);<br />
mewah.info_kendaraan();<br />
cout&lt;&lt;&#8221; Akhir dari permulaaan()&#8230;&#8221;&lt;&lt;endl;<br />
}</p>
<p>=========================================================================*</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/r1zq.wordpress.com/98/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/r1zq.wordpress.com/98/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/r1zq.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/r1zq.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/r1zq.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/r1zq.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/r1zq.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/r1zq.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/r1zq.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/r1zq.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/r1zq.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/r1zq.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/r1zq.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/r1zq.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/r1zq.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/r1zq.wordpress.com/98/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=r1zq.wordpress.com&amp;blog=1481782&amp;post=98&amp;subd=r1zq&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://r1zq.wordpress.com/2008/06/29/inheritance-newbie-c-language-eps-15/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3c681d86acf683ce9eb0890baab41645?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">r1zq</media:title>
		</media:content>
	</item>
		<item>
		<title>Sorting @pacsal</title>
		<link>http://r1zq.wordpress.com/2008/06/29/sorting-pacsal/</link>
		<comments>http://r1zq.wordpress.com/2008/06/29/sorting-pacsal/#comments</comments>
		<pubDate>Sun, 29 Jun 2008 17:12:58 +0000</pubDate>
		<dc:creator>r1zq</dc:creator>
				<category><![CDATA[Pascal Language]]></category>

		<guid isPermaLink="false">http://r1zq.wordpress.com/?p=97</guid>
		<description><![CDATA[uses wincrt; const L: array [1..6] of integer = (07, 08, 01, 02, 04, 10); pass:integer= 0; nilai_diingat: integer = 0; i:integer= 0; label 1; begin for pass:= 1 to 5 do begin nilai_diingat:= L[pass+1]; writeln(&#8216;Nilai di ingat=&#8217;, nilai_dingat); for i:=pass downto 1 do begin writeln(&#8216;test&#8217;); if nilai_diingat&#60; L[i] then begin writeln(&#8216;Sebelum digeser &#8216;, &#8216;L[i+1]=&#8217;, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=r1zq.wordpress.com&amp;blog=1481782&amp;post=97&amp;subd=r1zq&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>uses wincrt;<br />
const<br />
L: array [1..6] of integer = (07, 08, 01, 02, 04, 10);<br />
pass:integer= 0;<br />
nilai_diingat: integer = 0;<br />
i:integer= 0;<br />
label 1;</p>
<p>begin<br />
for pass:= 1 to 5 do begin<br />
nilai_diingat:= L[pass+1];<br />
writeln(&#8216;Nilai di ingat=&#8217;, nilai_dingat);</p>
<p>for i:=pass downto 1 do begin<br />
writeln(&#8216;test&#8217;);<br />
if nilai_diingat&lt; L[i] then begin<br />
writeln(&#8216;Sebelum digeser &#8216;, &#8216;L[i+1]=&#8217;, L[i+1], &#8216; &#8216;, &#8216;L[i]=&#8217;, L[i]);<br />
L[i+1]:=L[i];<br />
writeln(&#8216;Sesudah digeser &#8216;, &#8216;L[i+1]=&#8217;, L[i+1], &#8216; &#8216;, &#8216;L[i]=&#8217;, L[i]);<br />
L[i+1]:=L[i];<br />
end else begin<br />
{posisi sudah benar keluar dari loop}<br />
L[i+1]:=nilai_diingat;<br />
goto 1;<br />
end;<br />
end;<br />
1:<br />
end;<br />
for i:=1 to 6 do begin<br />
writeln(L[i]);<br />
end;</p>
<p>end.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/r1zq.wordpress.com/97/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/r1zq.wordpress.com/97/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/r1zq.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/r1zq.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/r1zq.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/r1zq.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/r1zq.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/r1zq.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/r1zq.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/r1zq.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/r1zq.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/r1zq.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/r1zq.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/r1zq.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/r1zq.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/r1zq.wordpress.com/97/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=r1zq.wordpress.com&amp;blog=1481782&amp;post=97&amp;subd=r1zq&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://r1zq.wordpress.com/2008/06/29/sorting-pacsal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3c681d86acf683ce9eb0890baab41645?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">r1zq</media:title>
		</media:content>
	</item>
		<item>
		<title>Musics for me.</title>
		<link>http://r1zq.wordpress.com/2008/06/23/musics-for-me/</link>
		<comments>http://r1zq.wordpress.com/2008/06/23/musics-for-me/#comments</comments>
		<pubDate>Mon, 23 Jun 2008 18:18:03 +0000</pubDate>
		<dc:creator>r1zq</dc:creator>
				<category><![CDATA[Intermezzo]]></category>

		<guid isPermaLink="false">http://r1zq.wordpress.com/?p=96</guid>
		<description><![CDATA[There are many kinds of genre music i known has powerfull to bring up more peoples can dancing very nice. Hiphop was made and used almost of black rassicm. I feel too its can be every muscle in my body dancing following music. Especially when i think should free my mind from every problems. Music [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=r1zq.wordpress.com&amp;blog=1481782&amp;post=96&amp;subd=r1zq&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>There are many kinds of genre music i known has powerfull to bring up more peoples can dancing very nice. Hiphop was made and used almost of black rassicm. I feel too its can be every muscle in my body dancing following music. Especially when i think should free my mind from every problems. Music can be changing peoples to handling they problems. Entertainment forever for everyone in the world. Messenger in different way to expressions many kinds of interuption or feels. Everyone can be touching with Music, Moving around to get happiness in the deep of heart. Work with passion inclued Music is most of dreams everyone such as DJ’s in crowded they are able to make crowded happiness with musics. A Pete Tong is A DJ’s International Class and reffering research in England Magazine he’s DJ’s with Biggest Income in the world. Indonesia has a DJ’s famous too like DJ’s Riri as Spinach’s DJ School owner located in Kemang &#8211; South of Jakarta. Development Musics in Indonesia is growing rapidly prove with most of new comers in stage music Indonesia. The Best of Single Hits from new comers it’s very crucial to attracts more peoples listening they musics.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/r1zq.wordpress.com/96/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/r1zq.wordpress.com/96/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/r1zq.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/r1zq.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/r1zq.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/r1zq.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/r1zq.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/r1zq.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/r1zq.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/r1zq.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/r1zq.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/r1zq.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/r1zq.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/r1zq.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/r1zq.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/r1zq.wordpress.com/96/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=r1zq.wordpress.com&amp;blog=1481782&amp;post=96&amp;subd=r1zq&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://r1zq.wordpress.com/2008/06/23/musics-for-me/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3c681d86acf683ce9eb0890baab41645?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">r1zq</media:title>
		</media:content>
	</item>
		<item>
		<title>Just shocked.</title>
		<link>http://r1zq.wordpress.com/2008/06/23/just-shocked/</link>
		<comments>http://r1zq.wordpress.com/2008/06/23/just-shocked/#comments</comments>
		<pubDate>Mon, 23 Jun 2008 18:17:29 +0000</pubDate>
		<dc:creator>r1zq</dc:creator>
				<category><![CDATA[Intermezzo]]></category>

		<guid isPermaLink="false">http://r1zq.wordpress.com/?p=95</guid>
		<description><![CDATA[Sometimes i just shocked with policies in my office especially in division where i work now. i now begining to new prospect for support my dream in the future. must be stronger to handling problems whatever that i must know what can i do to fight with it. Hoping with doing and pray make its [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=r1zq.wordpress.com&amp;blog=1481782&amp;post=95&amp;subd=r1zq&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Sometimes i just shocked with policies in my office especially in division where i work now. i now begining to new prospect for support my dream in the future. must be stronger to handling problems whatever that i must know what can i do to fight with it. Hoping with doing and pray make its perfect come true.by the way about my nearby plans is having a laptop to increase and improve skills. and it’s can be make me different person with another. Can anyone help me to do it ? I wish a laptop to designing and programming. Work with passion is dream in every people in the world, work without under pressure handling problems with smile. How they can do that ? cause they’re work with passionate. Everything they did was great in deep of heart and helpful to be success.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/r1zq.wordpress.com/95/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/r1zq.wordpress.com/95/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/r1zq.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/r1zq.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/r1zq.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/r1zq.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/r1zq.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/r1zq.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/r1zq.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/r1zq.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/r1zq.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/r1zq.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/r1zq.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/r1zq.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/r1zq.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/r1zq.wordpress.com/95/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=r1zq.wordpress.com&amp;blog=1481782&amp;post=95&amp;subd=r1zq&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://r1zq.wordpress.com/2008/06/23/just-shocked/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3c681d86acf683ce9eb0890baab41645?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">r1zq</media:title>
		</media:content>
	</item>
		<item>
		<title>Blowout in motorcycle.</title>
		<link>http://r1zq.wordpress.com/2008/06/23/blowout-in-motorcycle/</link>
		<comments>http://r1zq.wordpress.com/2008/06/23/blowout-in-motorcycle/#comments</comments>
		<pubDate>Mon, 23 Jun 2008 18:16:27 +0000</pubDate>
		<dc:creator>r1zq</dc:creator>
				<category><![CDATA[Intermezzo]]></category>

		<guid isPermaLink="false">http://r1zq.wordpress.com/?p=94</guid>
		<description><![CDATA[Hi..Morning reader. Today i getting something can make me sad and angry. wake up at 06:00am in the morning friday, i was shock with blowout in motorcycle.i trying to remember whats happened in yesterday night. i’m across way where nail was spreads. imagine it was a street in front of my building office. Why i [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=r1zq.wordpress.com&amp;blog=1481782&amp;post=94&amp;subd=r1zq&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hi..Morning reader.</p>
<p>Today i getting something can make me sad and angry. wake up at 06:00am in the morning friday, i was shock with blowout in motorcycle.i trying to remember whats happened in yesterday night. i’m across way where nail was spreads. imagine it was a street in front of my building office. Why i say that ? cause it was happened in someone too. i hope this isn’t re-happens.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/r1zq.wordpress.com/94/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/r1zq.wordpress.com/94/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/r1zq.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/r1zq.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/r1zq.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/r1zq.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/r1zq.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/r1zq.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/r1zq.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/r1zq.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/r1zq.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/r1zq.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/r1zq.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/r1zq.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/r1zq.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/r1zq.wordpress.com/94/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=r1zq.wordpress.com&amp;blog=1481782&amp;post=94&amp;subd=r1zq&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://r1zq.wordpress.com/2008/06/23/blowout-in-motorcycle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3c681d86acf683ce9eb0890baab41645?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">r1zq</media:title>
		</media:content>
	</item>
		<item>
		<title>At 22-05-2008, 20.50 pm.</title>
		<link>http://r1zq.wordpress.com/2008/06/23/at-22-05-2008-2050-pm/</link>
		<comments>http://r1zq.wordpress.com/2008/06/23/at-22-05-2008-2050-pm/#comments</comments>
		<pubDate>Mon, 23 Jun 2008 18:15:56 +0000</pubDate>
		<dc:creator>r1zq</dc:creator>
				<category><![CDATA[Intermezzo]]></category>

		<guid isPermaLink="false">http://r1zq.wordpress.com/?p=93</guid>
		<description><![CDATA[The Weather in evening at 22 May 2008 is very cool with clouds. I still in my office desk hoping miracle in my life. it was planned in years ago. I feels sadness without someone who can entering my heart. I didn’t known about my problems with girls and problems in the future. I want [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=r1zq.wordpress.com&amp;blog=1481782&amp;post=93&amp;subd=r1zq&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The Weather in evening at 22 May 2008 is very cool with clouds. I still in my office desk hoping miracle in my life. it was planned in years ago. I feels sadness without someone who can entering my heart. I didn’t known about my problems with girls and problems in the future. I want to someone who can give me advices especially for me to take someone who can complete my missing pieces. Time shown at 20.50 pm i should prepare to take go home. I have made plan one of it was happened in my life. Thanks God. Nothing perfectly except ALLAH SWT.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/r1zq.wordpress.com/93/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/r1zq.wordpress.com/93/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/r1zq.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/r1zq.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/r1zq.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/r1zq.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/r1zq.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/r1zq.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/r1zq.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/r1zq.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/r1zq.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/r1zq.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/r1zq.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/r1zq.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/r1zq.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/r1zq.wordpress.com/93/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=r1zq.wordpress.com&amp;blog=1481782&amp;post=93&amp;subd=r1zq&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://r1zq.wordpress.com/2008/06/23/at-22-05-2008-2050-pm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3c681d86acf683ce9eb0890baab41645?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">r1zq</media:title>
		</media:content>
	</item>
		<item>
		<title>At 22-05-2008</title>
		<link>http://r1zq.wordpress.com/2008/06/23/at-22-05-2008/</link>
		<comments>http://r1zq.wordpress.com/2008/06/23/at-22-05-2008/#comments</comments>
		<pubDate>Mon, 23 Jun 2008 18:15:10 +0000</pubDate>
		<dc:creator>r1zq</dc:creator>
				<category><![CDATA[Intermezzo]]></category>

		<guid isPermaLink="false">http://r1zq.wordpress.com/?p=92</guid>
		<description><![CDATA[Today.. At 16.00 Wib, I drunk a coffee cup. I wish a Laptop to sharpen my skill in Design, especially in Website Design. but, maybe not this time not this month cause i have problem with my financial plan.I seems many kinds of Laptop to do buy later. And now i cultivated something in there [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=r1zq.wordpress.com&amp;blog=1481782&amp;post=92&amp;subd=r1zq&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Today..<br />
At 16.00 Wib, I drunk a coffee cup. I wish a Laptop to sharpen my skill in Design, especially in Website Design.<br />
but, maybe not this time not this month cause i have problem with my financial plan.I seems many kinds of Laptop to do buy later. And now i cultivated something in there for helpful my dream. Do you know what i wish ? I’m want to be a Profesionalism with international class in my focus [Website Design].</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/r1zq.wordpress.com/92/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/r1zq.wordpress.com/92/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/r1zq.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/r1zq.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/r1zq.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/r1zq.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/r1zq.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/r1zq.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/r1zq.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/r1zq.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/r1zq.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/r1zq.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/r1zq.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/r1zq.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/r1zq.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/r1zq.wordpress.com/92/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=r1zq.wordpress.com&amp;blog=1481782&amp;post=92&amp;subd=r1zq&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://r1zq.wordpress.com/2008/06/23/at-22-05-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3c681d86acf683ce9eb0890baab41645?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">r1zq</media:title>
		</media:content>
	</item>
		<item>
		<title>Newbie @ C++ Language eps 14</title>
		<link>http://r1zq.wordpress.com/2008/06/13/newbie-c-language-eps-14/</link>
		<comments>http://r1zq.wordpress.com/2008/06/13/newbie-c-language-eps-14/#comments</comments>
		<pubDate>Fri, 13 Jun 2008 11:17:33 +0000</pubDate>
		<dc:creator>r1zq</dc:creator>
				<category><![CDATA[C / C++ Family Language]]></category>

		<guid isPermaLink="false">http://r1zq.wordpress.com/?p=91</guid>
		<description><![CDATA[Example : Simple Virtual Function. Declared By : Rizky a.k.a Reul, Mas Willy as Administrator of (http://forum.linux.or.id/) and link source code-nya lupa. #include &#60;iostream.h&#62; // using namespace std; class BaseClass { // mendefinisikan class baru/INDUK yaitu BaseClass public: // mendefinisikan bahwa public artinya bisa di akses oleh semua class int i; BaseClass(int x) { i [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=r1zq.wordpress.com&amp;blog=1481782&amp;post=91&amp;subd=r1zq&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Example       : Simple Virtual Function.</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">Declared By :</p>
<p style="margin-bottom:0;">Rizky a.k.a Reul, Mas Willy as Administrator of (<span style="color:#000080;"><span style="text-decoration:underline;"><a href="http://forum.linux.or.id/">http://forum.linux.or.id/</a></span></span>) and link source code-nya lupa.</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">#include &lt;iostream.h&gt;</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;"><span style="color:#0099ff;">// using namespace std;</span></p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">class BaseClass {<span style="color:#0099ff;"> // mendefinisikan class baru/INDUK yaitu BaseClass</span></p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">public:  <span style="color:#0099ff;">// mendefinisikan bahwa public artinya bisa di akses oleh semua class</span></p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">int i;</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">BaseClass(int x) {</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">i = x;</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">}</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">virtual void myFunction() <span style="color:#0099ff;">/* mendefinisikan bahwa kita memakai VIRTUAL, artinya fungsi ini bisa di implementasikan ke class anak yaitu &#8220;DerivedClass1 dan DerivedClass2 */</span></p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">{</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">cout &lt;&lt; &#8220;Using BaseClass version of myFunction(): &#8220;; <span style="color:#0099ff;">//menampilkan kata2 tsb</span></p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">cout &lt;&lt; i &lt;&lt; &#8216;\n&#8217;; <span style="color:#0099ff;">// menampilkan hasil dari i</span></p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">}</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">};</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">class DerivedClass1 : public BaseClass { <span style="color:#0099ff;">/* mendefiniskan bahwa class DerivedClass1 merupakan TURUNAN dari class BaseClass </span></p>
<p style="margin-bottom:0;"><span style="color:#0099ff;">*/</span></p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">public: <span style="color:#0099ff;">// mendefinisikan bahwa public artinya bisa di akses oleh semua class</span></p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">DerivedClass1(int x) : BaseClass(x) {}  <span style="color:#0099ff;">/* artinya DerivedClass1 mengambil nilai x dari BaseClass dan telah di definisikan pula oleh BaseClass BaseClass(int x) { i = x; } */</span></p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">void myFunction() <span style="color:#0099ff;">// memanggil fungsi yaitu myFunction yang telah di definisikan VIRTUAL</span></p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">{</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">cout &lt;&lt; &#8220;Using DerivedClass1&#8242;s version of myFunction(): &#8220;; <span style="color:#0099ff;">//menampilkan kata2 tsb</span></p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">cout &lt;&lt; i*i &lt;&lt; &#8216;\n&#8217;; <span style="color:#0099ff;">// menampilkan hasil dari i</span></p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">}</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">};</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">class DerivedClass2 : public BaseClass {</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;"><span style="color:#0099ff;">/* mendefiniskan bahwa class DerivedClass2 merupakan TURUNAN dari class BaseClass </span></p>
<p style="margin-bottom:0;"><span style="color:#0099ff;">*/</span></p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">public: <span style="color:#0099ff;">// mendefinisikan bahwa public artinya bisa di akses oleh semua class</span></p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">DerivedClass2(int x) : BaseClass(x) {} /<span style="color:#0099ff;">* artinya DerivedClass2 mengambil nilai x dari BaseClass dan telah di definisikan pula oleh BaseClass BaseClass(int x) { i = x; } */</span></p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">void myFunction() <span style="color:#0099ff;">// memanggil fungsi yaitu myFunction yang telah di definisikan VIRTUAL</span></p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">{</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">cout &lt;&lt; &#8220;Using DerivedClass2&#8242;s version of myFunction(): &#8220;; <span style="color:#0099ff;">//menampilkan kata2 tsb</span></p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">cout &lt;&lt; i+i &lt;&lt; &#8216;\n&#8217;; <span style="color:#0099ff;">//menampilkan hasil dari i</span></p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">}</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">};</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">int main()</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">{</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">BaseClass *p; <span style="color:#0099ff;">//mendefinisikan pointer *p sebagai BaseClass</span></p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">BaseClass ob(10); <span style="color:#0099ff;">//mengisi nilai BaseClass dengan nama ob menjadi 10</span></p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">DerivedClass1 derivedObject1(10);  <span style="color:#0099ff;"> // mengisi nilai DerivedClass1 dengan nama derivedObject1 menjadi 10 yang telah di definisikan dengan variable i */</span></p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">DerivedClass2 derivedObject2(10);  <span style="color:#0099ff;">//Dan mengisi nilai DerivedClass2 dengan nama derivedObject2 menjadi 10 yang telah di definisikan dengan variable i */</span></p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">p = &amp;ob;<span style="color:#0099ff;"> // mendefinisikan bahwa pointer *p beralamatkan isi dari ob yaitu 10</span></p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">p-&gt;myFunction();                         <span style="color:#0099ff;">// use BaseClass&#8217;s myFunction() </span></p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;"><span style="color:#0099ff;">/* memanggil fungsi BaseClass dengan nilai p=10 </span></p>
<p style="margin-bottom:0;"><span style="color:#0099ff;">*/</span></p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">p = &amp;derivedObject1; <span style="color:#0099ff;">// mendefinisikan bahwa pointer *p beralamatkan isi dari derivedObject1 yaitu 10</span></p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">p-&gt;myFunction();                        <span style="color:#0099ff;"> // use DerivedClass1&#8242;s myFunction()</span></p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;"><span style="color:#0099ff;">/* memanggil fungsi DerivedClass1 yang telah di definisikan oleh derivedObject1 dengan nilai p=10 </span></p>
<p style="margin-bottom:0;"><span style="color:#0099ff;">*/</span></p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">p = &amp;derivedObject2; <span style="color:#0099ff;">// mendefinisikan bahwa pointer *p beralamatkan isi dari derivedObject1 yaitu 10</span></p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">p-&gt;myFunction();                         <span style="color:#0099ff;">// use DerivedClass2&#8242;s myFunction()</span></p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;"><span style="color:#0099ff;">/* memanggil fungsi DerivedClass2 yang telah di definisikan oleh derivedObject2 dengan nilai p=10 </span></p>
<p style="margin-bottom:0;"><span style="color:#0099ff;">*/</span></p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">return 0;</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">}</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">Notes for u :</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">=&gt; Virtual berarti nanti bisa DITIMPA oleh class turunan.</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">=&gt; C++ khan OOP, jadi kita bisa punya sebuah class yang nanti BISA DI TURUNKAN oleh class lain</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">=&gt; nah kalo pada class INDUK kita definisikan virtual, maka class ANAK bisa menimpa implementasi</p>
<p style="margin-bottom:0;">di class INDUK</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">=&gt; PRIVATE hanya bisa diakses oleh class yang sama</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">=&gt; kalo PUBLIC bisa diakses semua class</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">=&gt; class DerivedClass1 : public BaseClass [ artinya mendefiniskan bahwa class DerivedClass1 merupakan turunan dari class BaseClass]</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">Was Written by:</p>
<p style="margin-bottom:0;">Rizky a.k.a Reul</p>
<p style="margin-bottom:0;">00.09am, Tuesday 10 June 2008.</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">
<p style="margin-bottom:0;" align="center">&lt;====[ <span style="color:#bfbf00;"><em>E</em></span>xploring <span style="color:#bfbf00;"><em>Y</em></span>our i<span style="color:#bfbf00;"><em>D</em></span>ea ]====&gt;<br />
www.m-r1zq.co.nr | www.thereullc.blogspot.com</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/r1zq.wordpress.com/91/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/r1zq.wordpress.com/91/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/r1zq.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/r1zq.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/r1zq.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/r1zq.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/r1zq.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/r1zq.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/r1zq.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/r1zq.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/r1zq.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/r1zq.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/r1zq.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/r1zq.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/r1zq.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/r1zq.wordpress.com/91/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=r1zq.wordpress.com&amp;blog=1481782&amp;post=91&amp;subd=r1zq&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://r1zq.wordpress.com/2008/06/13/newbie-c-language-eps-14/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3c681d86acf683ce9eb0890baab41645?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">r1zq</media:title>
		</media:content>
	</item>
		<item>
		<title>Newbie @ C++ Language eps 13</title>
		<link>http://r1zq.wordpress.com/2008/06/13/newbie-c-language-eps-13/</link>
		<comments>http://r1zq.wordpress.com/2008/06/13/newbie-c-language-eps-13/#comments</comments>
		<pubDate>Fri, 13 Jun 2008 11:10:44 +0000</pubDate>
		<dc:creator>r1zq</dc:creator>
				<category><![CDATA[C / C++ Family Language]]></category>

		<guid isPermaLink="false">http://r1zq.wordpress.com/?p=90</guid>
		<description><![CDATA[Latihan : 1.Buatlah program dengan menggunakan kelas dengan fungsi yang di definisikan di dalam kelas,dengan tampilan sbb: NIM             : 1234 Nama            : Andi Jurusan         : Teknik Informatika Alamat          : Meruya Selatan 2.Buatlah program dengan menggunakan kelas dengan fungsi yang di definisikan di luar kelas,dengan tampilan sbb: Merek           : Honda GL Pro Tahun           : 2007 No [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=r1zq.wordpress.com&amp;blog=1481782&amp;post=90&amp;subd=r1zq&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Latihan :</p>
<p>1.Buatlah program dengan menggunakan kelas dengan fungsi yang di definisikan di dalam kelas,dengan tampilan sbb:</p>
<p>NIM             : 1234<br />
Nama            : Andi<br />
Jurusan         : Teknik Informatika<br />
Alamat          : Meruya Selatan</p>
<p>2.Buatlah program dengan menggunakan kelas dengan fungsi yang di definisikan di luar kelas,dengan tampilan sbb:</p>
<p>Merek           : Honda GL Pro<br />
Tahun           : 2007<br />
No Polisi       : B1669OK<br />
Warna           : Hitam</p>
<p>===============================================================</p>
<p style="margin-bottom:0;text-align:left;">The Answer below and was cr4ck3d  d(^_^)b  thanks to Tya dkk.</p>
<p style="margin-bottom:0;text-align:left;">===============================================================</p>
<p style="margin-bottom:0;" align="center"><strong>Compiler : G++ Ubuntu Linux Feisty Fawn 7.04 </strong></p>
<p style="margin-bottom:0;">= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =</p>
<p style="margin-bottom:0;">#include &lt;iostream.h&gt;</p>
<p style="margin-bottom:0;">#include &lt;string.h&gt;</p>
<p style="margin-bottom:0;">class mahasiswa</p>
<p style="margin-bottom:0;">{</p>
<p style="margin-bottom:0;">private:</p>
<p style="margin-bottom:0;">int id;</p>
<p style="margin-bottom:0;">char nama[80], jurusan [50], alamat [100];</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">public:</p>
<p style="margin-bottom:0;">void tampilkan(void)</p>
<p style="margin-bottom:0;">{</p>
<p style="margin-bottom:0;">cout&lt;&lt;&#8221;Nim	: &#8220;&lt;&lt;id&lt;&lt;endl;</p>
<p style="margin-bottom:0;">cout&lt;&lt;&#8221;Nama    : &#8220;&lt;&lt;nama&lt;&lt;endl;</p>
<p style="margin-bottom:0;">cout&lt;&lt;&#8221;Jurusan : &#8220;&lt;&lt;jurusan&lt;&lt;endl;</p>
<p style="margin-bottom:0;">cout&lt;&lt;&#8221;Alamat  : &#8220;&lt;&lt;alamat&lt;&lt;endl;</p>
<p style="margin-bottom:0;">}</p>
<p style="margin-bottom:0;">void set(int idn, char *n, char *j, char *a)</p>
<p style="margin-bottom:0;">{</p>
<p style="margin-bottom:0;">id = idn;</p>
<p style="margin-bottom:0;">strcpy(nama,n);</p>
<p style="margin-bottom:0;">strcpy(jurusan,j);</p>
<p style="margin-bottom:0;">strcpy(alamat,a);</p>
<p style="margin-bottom:0;">}</p>
<p style="margin-bottom:0;">};</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">int main()</p>
<p style="margin-bottom:0;">{</p>
<p style="margin-bottom:0;">mahasiswa saya;</p>
<p style="margin-bottom:0;">saya.set(1234,&#8221;Andi&#8221;,&#8221;Teknik Informatika&#8221;,&#8221;Meruya Selatan&#8221;);</p>
<p style="margin-bottom:0;">saya.tampilkan();</p>
<p style="margin-bottom:0;">return 0;</p>
<p style="margin-bottom:0;">}</p>
<p style="margin-bottom:0;">= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =</p>
<p style="margin-bottom:0;">#include &lt;iostream.h&gt;</p>
<p style="margin-bottom:0;">#include &lt;string.h&gt;</p>
<p style="margin-bottom:0;">class motor</p>
<p style="margin-bottom:0;">{</p>
<p style="margin-bottom:0;">private:</p>
<p style="margin-bottom:0;">char merek [80], tahun [5], no_pol [15], warna [10];</p>
<p style="margin-bottom:0;">public:</p>
<p style="margin-bottom:0;">void tampilkan();</p>
<p style="margin-bottom:0;">void set(char *m,char *t, char *n, char *w);</p>
<p style="margin-bottom:0;">};</p>
<p style="margin-bottom:0;">int main()</p>
<p style="margin-bottom:0;">{</p>
<p style="margin-bottom:0;">motor saya;</p>
<p style="margin-bottom:0;">saya.set(&#8220;Honda GL Pro&#8221;, &#8220;2007&#8243;, &#8220;B1669OK&#8221;, &#8220;Hitam&#8221; );</p>
<p style="margin-bottom:0;">saya.tampilkan();</p>
<p style="margin-bottom:0;">}</p>
<p style="margin-bottom:0;">void motor :: tampilkan(void)</p>
<p style="margin-bottom:0;">{</p>
<p style="margin-bottom:0;">cout&lt;&lt;&#8221;Merek 	   : &#8220;&lt;&lt;merek&lt;&lt;endl;</p>
<p style="margin-bottom:0;">cout&lt;&lt;&#8221;Tahun      : &#8220;&lt;&lt;tahun&lt;&lt;endl;</p>
<p style="margin-bottom:0;">cout&lt;&lt;&#8221;No Polisi  : &#8220;&lt;&lt;no_pol&lt;&lt;endl;</p>
<p style="margin-bottom:0;">cout&lt;&lt;&#8221;Warna      : &#8220;&lt;&lt;warna&lt;&lt;endl;</p>
<p style="margin-bottom:0;">}</p>
<p style="margin-bottom:0;">void motor :: set(char *m, char *t, char *n, char*w )</p>
<p style="margin-bottom:0;">{</p>
<p style="margin-bottom:0;">strcpy(merek,m);</p>
<p style="margin-bottom:0;">strcpy (tahun,t);</p>
<p style="margin-bottom:0;">strcpy (no_pol,n);</p>
<p style="margin-bottom:0;">strcpy (warna,w);</p>
<p style="margin-bottom:0;">}</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/r1zq.wordpress.com/90/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/r1zq.wordpress.com/90/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/r1zq.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/r1zq.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/r1zq.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/r1zq.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/r1zq.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/r1zq.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/r1zq.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/r1zq.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/r1zq.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/r1zq.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/r1zq.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/r1zq.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/r1zq.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/r1zq.wordpress.com/90/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=r1zq.wordpress.com&amp;blog=1481782&amp;post=90&amp;subd=r1zq&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://r1zq.wordpress.com/2008/06/13/newbie-c-language-eps-13/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3c681d86acf683ce9eb0890baab41645?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">r1zq</media:title>
		</media:content>
	</item>
		<item>
		<title>Newbie @ C++ Language eps 12</title>
		<link>http://r1zq.wordpress.com/2008/06/09/newbie-c-language-eps-12/</link>
		<comments>http://r1zq.wordpress.com/2008/06/09/newbie-c-language-eps-12/#comments</comments>
		<pubDate>Mon, 09 Jun 2008 15:11:05 +0000</pubDate>
		<dc:creator>r1zq</dc:creator>
				<category><![CDATA[C / C++ Family Language]]></category>

		<guid isPermaLink="false">http://r1zq.wordpress.com/?p=89</guid>
		<description><![CDATA[Membahas tentang kosep [OOP] Objek Oriented Programming dan Fungsi dalam C++. #include&#60;iostream.h&#62; float luaspersegipanjang(float panjang,float lebar); void main() { float p,l; cout&#60;&#60;&#8221;Masukan Panjang = &#8220;; cin&#62;&#62;p; cout&#60;&#60;&#8221;Masukan Lebar = &#8220;; cin&#62;&#62;l; cout&#60;&#60;&#8221;Nilai luar persegi panjang&#8221;&#60;&#60;luaspersegipanjang(p,l); } float luaspersegipanjang(float panjang,float lebar) { float luas; luas=panjang*lebar; return luas; } =============================================* #include&#60;iostream.h&#62; float keliling(float r) { float phi=3.14; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=r1zq.wordpress.com&amp;blog=1481782&amp;post=89&amp;subd=r1zq&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Membahas tentang kosep [OOP] Objek Oriented Programming dan Fungsi dalam C++.</p>
<p>#include&lt;iostream.h&gt;<br />
float luaspersegipanjang(float panjang,float lebar);<br />
void main()<br />
{<br />
float p,l;<br />
cout&lt;&lt;&#8221;Masukan Panjang = &#8220;;<br />
cin&gt;&gt;p;<br />
cout&lt;&lt;&#8221;Masukan Lebar = &#8220;;<br />
cin&gt;&gt;l;<br />
cout&lt;&lt;&#8221;Nilai luar persegi panjang&#8221;&lt;&lt;luaspersegipanjang(p,l);<br />
}<br />
float luaspersegipanjang(float panjang,float lebar)<br />
{<br />
float luas;<br />
luas=panjang*lebar;<br />
return luas;<br />
}</p>
<p>=============================================*</p>
<p>#include&lt;iostream.h&gt;<br />
float keliling(float r)<br />
{<br />
float phi=3.14;<br />
return (2*phi*r);<br />
}</p>
<p>void main()<br />
{<br />
float r;<br />
cout&lt;&lt;&#8221;Masukan Jari-jari ; &#8220;;<br />
cin&gt;&gt;r;<br />
cout&lt;&lt;&#8221;Keliling Lingkaran=&#8221;&lt;&lt;keliling(r);<br />
}</p>
<p>===============================================================*</p>
<p>#include &lt;iostream.h&gt;<br />
#include &lt;string.h&gt;<br />
class penduduk<br />
{<br />
private:<br />
int id;<br />
char nama[80];<br />
public:<br />
void tampilkan(void)<br />
{<br />
cout&lt;&lt;&#8221;No. KTP : &#8220;&lt;&lt;id&lt;&lt;endl;<br />
cout&lt;&lt;&#8221;Nama    : &#8220;&lt;&lt;nama&lt;&lt;endl;<br />
}<br />
void set(int idn, char *n)<br />
{<br />
id = idn;<br />
strcpy(nama,n);<br />
}<br />
};</p>
<p>void main()<br />
{<br />
penduduk saya;<br />
saya.set(1234,&#8221;Andi&#8221;);<br />
saya.tampilkan();<br />
}</p>
<p>===============================================================*</p>
<p>#include &lt;iostream.h&gt;<br />
#include &lt;string.h&gt;<br />
class penduduk<br />
{<br />
private:<br />
int id;<br />
char nama[80];<br />
public:<br />
void tampilkan();<br />
void set(int idn, char *n);<br />
};</p>
<p>void main()<br />
{<br />
penduduk saya;<br />
saya.set(1234,&#8221;Andi&#8221;);<br />
saya.tampilkan();<br />
}</p>
<p>void penduduk :: tampilkan(void)<br />
{<br />
cout&lt;&lt;&#8221;No. KTP : &#8220;&lt;&lt;id&lt;&lt;endl;<br />
cout&lt;&lt;&#8221;Nama    : &#8220;&lt;&lt;nama&lt;&lt;endl;<br />
}<br />
void penduduk :: set(int idn, char *n)<br />
{<br />
id = idn;<br />
strcpy(nama,n);<br />
}</p>
<p>===============================================================*</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/r1zq.wordpress.com/89/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/r1zq.wordpress.com/89/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/r1zq.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/r1zq.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/r1zq.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/r1zq.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/r1zq.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/r1zq.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/r1zq.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/r1zq.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/r1zq.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/r1zq.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/r1zq.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/r1zq.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/r1zq.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/r1zq.wordpress.com/89/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=r1zq.wordpress.com&amp;blog=1481782&amp;post=89&amp;subd=r1zq&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://r1zq.wordpress.com/2008/06/09/newbie-c-language-eps-12/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3c681d86acf683ce9eb0890baab41645?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">r1zq</media:title>
		</media:content>
	</item>
	</channel>
</rss>
