<?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: C assignment</title>
	<atom:link href="https://www.emblogic.com/blog/11/c-assignment/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.emblogic.com/blog/11/c-assignment/</link>
	<description>Embedded System and ARM Training</description>
	<lastBuildDate>Mon, 07 Oct 2013 04:00:03 +0000</lastBuildDate>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.9.1</generator>
	<item>
		<title>By: kamran</title>
		<link>https://www.emblogic.com/blog/11/c-assignment/#comment-430</link>
		<dc:creator><![CDATA[kamran]]></dc:creator>
		<pubDate>Tue, 29 Nov 2011 18:42:36 +0000</pubDate>
		<guid isPermaLink="false">http://emblogic.org/blog/?p=1310#comment-430</guid>
		<description><![CDATA[it is very simple break it down as follows:
for loop start with i = 2 and 
input[i] contains  SSSWILTECH1\1\11W\WALLMP1

so input[2] = S (since array start from 0)

This input(2) i.e. S is pass into he switch case. Since no case is defined for S it will be passed to default .

The default says putchar(c) i.e is S
and second line say continue.
So hole process will go on again.
Now you can try it for rest of the values of i.
You will get the final output.

Note: Here is a catch \ is a escape sequence so the compiler will ignore the next char after \.]]></description>
		<content:encoded><![CDATA[<p>it is very simple break it down as follows:<br />
for loop start with i = 2 and<br />
input[i] contains  SSSWILTECH1\1\11W\WALLMP1</p>
<p>so input[2] = S (since array start from 0)</p>
<p>This input(2) i.e. S is pass into he switch case. Since no case is defined for S it will be passed to default .</p>
<p>The default says putchar(c) i.e is S<br />
and second line say continue.<br />
So hole process will go on again.<br />
Now you can try it for rest of the values of i.<br />
You will get the final output.</p>
<p>Note: Here is a catch \ is a escape sequence so the compiler will ignore the next char after \.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
