<?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>Comments on: Reflecting while studying C language</title>
	<atom:link href="http://task3.cc/270/reflecting-while-studying-c-language/feed/" rel="self" type="application/rss+xml" />
	<link>http://task3.cc/270/reflecting-while-studying-c-language/</link>
	<description>Trying to be mathematically simple and precise</description>
	<lastBuildDate>Wed, 21 Jul 2010 06:45:39 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Manuel</title>
		<link>http://task3.cc/270/reflecting-while-studying-c-language/comment-page-1/#comment-6861</link>
		<dc:creator>Manuel</dc:creator>
		<pubDate>Fri, 22 Feb 2008 18:22:58 +0000</pubDate>
		<guid isPermaLink="false">http://task3.cc/reflecting-while-studying-c-language/#comment-6861</guid>
		<description>&lt;code&gt;
#include &lt;stdio.h&gt;

main (int argc, char const *argv[]){
	char *p;
	p = &amp;argv[1][0];
	int a = strlen(argv[1]);
	while (a &gt;= 0){
		printf(&quot;%c&quot;, *(p+a));
		a--;
	}
	printf(&quot;\n&quot;);
}
&lt;/code&gt;

Less geek, but still working :)</description>
		<content:encoded><![CDATA[<p><code><br />
#include &lt;stdio.h&gt;</p>
<p>main (int argc, char const *argv[]){<br />
	char *p;<br />
	p = &amp;argv[1][0];<br />
	int a = strlen(argv[1]);<br />
	while (a &gt;= 0){<br />
		printf("%c", *(p+a));<br />
		a--;<br />
	}<br />
	printf("\n");<br />
}<br />
</code></p>
<p>Less geek, but still working <img src='http://task3.cc/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bodom_lx</title>
		<link>http://task3.cc/270/reflecting-while-studying-c-language/comment-page-1/#comment-6860</link>
		<dc:creator>bodom_lx</dc:creator>
		<pubDate>Fri, 22 Feb 2008 12:16:12 +0000</pubDate>
		<guid isPermaLink="false">http://task3.cc/reflecting-while-studying-c-language/#comment-6860</guid>
		<description>@ami
suineg a era uoy,aitnama

@benjamin
Pointers are so cool! I just wrote this code today morning, without looking at your ;) Yes, you were right
&lt;code&gt;
#include &lt;stdio.h&gt;
#include &lt;string.h&gt;
int main (int argc, char *argv[]){
	if(!argv[1]) return 0;
	char *p = argv[1] + strlen(argv[1]);
	while(p--!=argv[1]){
		printf(&quot;%c&quot;,*p);
	};
	printf(&quot;\n&quot;);	
}
&lt;/code&gt;

</description>
		<content:encoded><![CDATA[<p>@ami<br />
suineg a era uoy,aitnama</p>
<p>@benjamin<br />
Pointers are so cool! I just wrote this code today morning, without looking at your <img src='http://task3.cc/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  Yes, you were right<br />
<code><br />
#include &lt;stdio.h&gt;<br />
#include &lt;string.h&gt;<br />
int main (int argc, char *argv[]){<br />
	if(!argv[1]) return 0;<br />
	char *p = argv[1] + strlen(argv[1]);<br />
	while(p--!=argv[1]){<br />
		printf("%c",*p);<br />
	};<br />
	printf("\n");<br />
}<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ami</title>
		<link>http://task3.cc/270/reflecting-while-studying-c-language/comment-page-1/#comment-6859</link>
		<dc:creator>Ami</dc:creator>
		<pubDate>Thu, 21 Feb 2008 22:36:53 +0000</pubDate>
		<guid isPermaLink="false">http://task3.cc/reflecting-while-studying-c-language/#comment-6859</guid>
		<description>&quot;Why is the world so upside down? I can&#039;t take it anymore..&quot;</description>
		<content:encoded><![CDATA[<p>"Why is the world so upside down? I can't take it anymore.."</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Benjamin</title>
		<link>http://task3.cc/270/reflecting-while-studying-c-language/comment-page-1/#comment-6858</link>
		<dc:creator>Benjamin</dc:creator>
		<pubDate>Thu, 21 Feb 2008 13:16:16 +0000</pubDate>
		<guid isPermaLink="false">http://task3.cc/reflecting-while-studying-c-language/#comment-6858</guid>
		<description>&quot;c--&quot; should be &quot;c minus minus&quot;.. damn autoformatting!</description>
		<content:encoded><![CDATA[<p>"c--" should be "c minus minus".. damn autoformatting!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Benjamin</title>
		<link>http://task3.cc/270/reflecting-while-studying-c-language/comment-page-1/#comment-6857</link>
		<dc:creator>Benjamin</dc:creator>
		<pubDate>Thu, 21 Feb 2008 13:14:47 +0000</pubDate>
		<guid isPermaLink="false">http://task3.cc/reflecting-while-studying-c-language/#comment-6857</guid>
		<description>Loool!! and now with pointers ;-)

#include 
#include 

int main (int argc, char** argv)
{
  if (argc != 2)
    return 0;

  char* c = argv[1] + strlen(argv[1]);

  while (c-- != argv[1])
    printf(&quot;%c&quot;, *c);

  printf(&quot;\n&quot;);
}</description>
		<content:encoded><![CDATA[<p>Loool!! and now with pointers <img src='http://task3.cc/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>#include<br />
#include </p>
<p>int main (int argc, char** argv)<br />
{<br />
  if (argc != 2)<br />
    return 0;</p>
<p>  char* c = argv[1] + strlen(argv[1]);</p>
<p>  while (c-- != argv[1])<br />
    printf("%c", *c);</p>
<p>  printf("\n");<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bodom_lx</title>
		<link>http://task3.cc/270/reflecting-while-studying-c-language/comment-page-1/#comment-6856</link>
		<dc:creator>bodom_lx</dc:creator>
		<pubDate>Thu, 21 Feb 2008 09:47:49 +0000</pubDate>
		<guid isPermaLink="false">http://task3.cc/reflecting-while-studying-c-language/#comment-6856</guid>
		<description>Hhhhmmm have you tried turning your pc off and on again? ;)

* ROFL *</description>
		<content:encoded><![CDATA[<p>Hhhhmmm have you tried turning your pc off and on again? <img src='http://task3.cc/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>* ROFL *</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Manuel</title>
		<link>http://task3.cc/270/reflecting-while-studying-c-language/comment-page-1/#comment-6854</link>
		<dc:creator>Manuel</dc:creator>
		<pubDate>Thu, 21 Feb 2008 00:51:14 +0000</pubDate>
		<guid isPermaLink="false">http://task3.cc/reflecting-while-studying-c-language/#comment-6854</guid>
		<description>Hey.. I tried to run the program with the parameter &quot;LOL&quot;, but it doesn&#039;t seem to work to me... =)

*LOL*</description>
		<content:encoded><![CDATA[<p>Hey.. I tried to run the program with the parameter "LOL", but it doesn't seem to work to me... =)</p>
<p>*LOL*</p>
]]></content:encoded>
	</item>
</channel>
</rss>
