<?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: alphabet version 3</title>
	<atom:link href="http://samuel.happycoders.org/2007/05/19/alphabet-version-3/feed/" rel="self" type="application/rss+xml" />
	<link>http://samuel.happycoders.org/2007/05/19/alphabet-version-3/</link>
	<description>A french/american blog with some hungarian spices...</description>
	<lastBuildDate>Fri, 01 Aug 2008 07:43:35 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: nico</title>
		<link>http://samuel.happycoders.org/2007/05/19/alphabet-version-3/comment-page-1/#comment-15</link>
		<dc:creator>nico</dc:creator>
		<pubDate>Tue, 22 May 2007 16:30:14 +0000</pubDate>
		<guid isPermaLink="false">http://samuel.happycoders.org/2007/05/19/alphabet-version-3/#comment-15</guid>
		<description>My answer:

static void display_char(char c)
{
  switch (c)
    {
    case &#039;a&#039;:
      printf(&quot;a&quot;);
      break;
    case &#039;b&#039;:
      printf(&quot;b&quot;);
      break;
    case &#039;c&#039;:
      printf(&quot;c&quot;);
      break;
    case &#039;d&#039;:
      printf(&quot;d&quot;);
      break;
    case &#039;e&#039;:
      printf(&quot;e&quot;);
      break;
    case &#039;f&#039;:
      printf(&quot;f&quot;);
      break;
    case &#039;g&#039;:
      printf(&quot;g&quot;);
      break;
    case &#039;h&#039;:
      printf(&quot;h&quot;);
      break;
    case &#039;i&#039;:
      printf(&quot;i&quot;);
      break;
    case &#039;j&#039;:
      printf(&quot;j&quot;);
      break;
    case &#039;k&#039;:
      printf(&quot;k&quot;);
      break;
    case &#039;l&#039;:
      printf(&quot;l&quot;);
      break;
    case &#039;m&#039;:
      printf(&quot;m&quot;);
      break;
    case &#039;n&#039;:
      printf(&quot;n&quot;);
      break;
    case &#039;o&#039;:
      printf(&quot;o&quot;);
      break;
    case &#039;p&#039;:
      printf(&quot;p&quot;);
      break;
    case &#039;q&#039;:
      printf(&quot;q&quot;);
      break;
    case &#039;r&#039;:
      printf(&quot;r&quot;);
      break;
    case &#039;s&#039;:
      printf(&quot;s&quot;);
      break;
    case &#039;t&#039;:
      printf(&quot;t&quot;);
      break;
    case &#039;u&#039;:
      printf(&quot;u&quot;);
      break;
    case &#039;v&#039;:
      printf(&quot;v&quot;);
      break;
    case &#039;w&#039;:
      printf(&quot;w&quot;);
      break;
    case &#039;x&#039;:
      printf(&quot;x&quot;);
      break;
    case &#039;y&#039;:
      printf(&quot;y&quot;);
      break;
    case &#039;z&#039;:
      printf(&quot;z&quot;);
      break;
    default:
      printf(&quot;%c&quot;, c);
    }
}

int main(void)
{
  char i;

  for (i = 0x61; i </description>
		<content:encoded><![CDATA[<p>My answer:</p>
<p>static void display_char(char c)<br />
{<br />
  switch (c)<br />
    {<br />
    case &#8216;a&#8217;:<br />
      printf(&#8220;a&#8221;);<br />
      break;<br />
    case &#8216;b&#8217;:<br />
      printf(&#8220;b&#8221;);<br />
      break;<br />
    case &#8216;c&#8217;:<br />
      printf(&#8220;c&#8221;);<br />
      break;<br />
    case &#8216;d&#8217;:<br />
      printf(&#8220;d&#8221;);<br />
      break;<br />
    case &#8216;e&#8217;:<br />
      printf(&#8220;e&#8221;);<br />
      break;<br />
    case &#8216;f&#8217;:<br />
      printf(&#8220;f&#8221;);<br />
      break;<br />
    case &#8216;g&#8217;:<br />
      printf(&#8220;g&#8221;);<br />
      break;<br />
    case &#8216;h&#8217;:<br />
      printf(&#8220;h&#8221;);<br />
      break;<br />
    case &#8216;i&#8217;:<br />
      printf(&#8220;i&#8221;);<br />
      break;<br />
    case &#8216;j&#8217;:<br />
      printf(&#8220;j&#8221;);<br />
      break;<br />
    case &#8216;k&#8217;:<br />
      printf(&#8220;k&#8221;);<br />
      break;<br />
    case &#8216;l&#8217;:<br />
      printf(&#8220;l&#8221;);<br />
      break;<br />
    case &#8216;m&#8217;:<br />
      printf(&#8220;m&#8221;);<br />
      break;<br />
    case &#8216;n&#8217;:<br />
      printf(&#8220;n&#8221;);<br />
      break;<br />
    case &#8216;o&#8217;:<br />
      printf(&#8220;o&#8221;);<br />
      break;<br />
    case &#8216;p&#8217;:<br />
      printf(&#8220;p&#8221;);<br />
      break;<br />
    case &#8216;q&#8217;:<br />
      printf(&#8220;q&#8221;);<br />
      break;<br />
    case &#8216;r&#8217;:<br />
      printf(&#8220;r&#8221;);<br />
      break;<br />
    case &#8216;s&#8217;:<br />
      printf(&#8220;s&#8221;);<br />
      break;<br />
    case &#8216;t&#8217;:<br />
      printf(&#8220;t&#8221;);<br />
      break;<br />
    case &#8216;u&#8217;:<br />
      printf(&#8220;u&#8221;);<br />
      break;<br />
    case &#8216;v&#8217;:<br />
      printf(&#8220;v&#8221;);<br />
      break;<br />
    case &#8216;w&#8217;:<br />
      printf(&#8220;w&#8221;);<br />
      break;<br />
    case &#8216;x&#8217;:<br />
      printf(&#8220;x&#8221;);<br />
      break;<br />
    case &#8216;y&#8217;:<br />
      printf(&#8220;y&#8221;);<br />
      break;<br />
    case &#8216;z&#8217;:<br />
      printf(&#8220;z&#8221;);<br />
      break;<br />
    default:<br />
      printf(&#8220;%c&#8221;, c);<br />
    }<br />
}</p>
<p>int main(void)<br />
{<br />
  char i;</p>
<p>  for (i = 0&#215;61; i</p>
]]></content:encoded>
	</item>
</channel>
</rss>

