<?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: problem in execution</title>
	<atom:link href="https://www.emblogic.com/blog/07/problem-in-execution-2/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.emblogic.com/blog/07/problem-in-execution-2/</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: Nishant</title>
		<link>https://www.emblogic.com/blog/07/problem-in-execution-2/#comment-1027</link>
		<dc:creator><![CDATA[Nishant]]></dc:creator>
		<pubDate>Sun, 22 Jul 2012 17:32:25 +0000</pubDate>
		<guid isPermaLink="false">http://emblogic.org/blog/?p=4058#comment-1027</guid>
		<description><![CDATA[no arjumand this is wrong output.
the actual output is 55355 and the reason is in heamnt&#039;s comment....]]></description>
		<content:encoded><![CDATA[<p>no arjumand this is wrong output.<br />
the actual output is 55355 and the reason is in heamnt&#8217;s comment&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nishant</title>
		<link>https://www.emblogic.com/blog/07/problem-in-execution-2/#comment-1026</link>
		<dc:creator><![CDATA[Nishant]]></dc:creator>
		<pubDate>Sun, 22 Jul 2012 17:30:45 +0000</pubDate>
		<guid isPermaLink="false">http://emblogic.org/blog/?p=4058#comment-1026</guid>
		<description><![CDATA[thanx for the help hemant i also conclude this reason for the problem.......]]></description>
		<content:encoded><![CDATA[<p>thanx for the help hemant i also conclude this reason for the problem&#8230;&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hemant.kumar</title>
		<link>https://www.emblogic.com/blog/07/problem-in-execution-2/#comment-1025</link>
		<dc:creator><![CDATA[hemant.kumar]]></dc:creator>
		<pubDate>Sun, 22 Jul 2012 08:43:30 +0000</pubDate>
		<guid isPermaLink="false">http://emblogic.org/blog/?p=4058#comment-1025</guid>
		<description><![CDATA[your output should be 5 5 3 5 5
1st step: your execution will start from right to left.
2nd step:remember this point when you use PRE INCREEMENT operator i.e (++i) ,it takes the last updated value of i

for example..
let i=1;
printf(&quot;%d %d %d %d \n&quot;,++i,++i,++i,++i);
your output would be 5 5 5 5
because the last updated value in i is 5;

and in your case
i=1;
prntf(&quot;%d %d %d %d %d\n&quot;,i,++i,i++,++i,++i)
taking from the right side
2
3
3
5
5(last updated value is 5)
so wherever you have declared the ++i operator replace it with 5 but in case of post increement operator (i++)it would be 3]]></description>
		<content:encoded><![CDATA[<p>your output should be 5 5 3 5 5<br />
1st step: your execution will start from right to left.<br />
2nd step:remember this point when you use PRE INCREEMENT operator i.e (++i) ,it takes the last updated value of i</p>
<p>for example..<br />
let i=1;<br />
printf(&#8220;%d %d %d %d \n&#8221;,++i,++i,++i,++i);<br />
your output would be 5 5 5 5<br />
because the last updated value in i is 5;</p>
<p>and in your case<br />
i=1;<br />
prntf(&#8220;%d %d %d %d %d\n&#8221;,i,++i,i++,++i,++i)<br />
taking from the right side<br />
2<br />
3<br />
3<br />
5<br />
5(last updated value is 5)<br />
so wherever you have declared the ++i operator replace it with 5 but in case of post increement operator (i++)it would be 3</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: arjumand</title>
		<link>https://www.emblogic.com/blog/07/problem-in-execution-2/#comment-1005</link>
		<dc:creator><![CDATA[arjumand]]></dc:creator>
		<pubDate>Fri, 20 Jul 2012 15:55:36 +0000</pubDate>
		<guid isPermaLink="false">http://emblogic.org/blog/?p=4058#comment-1005</guid>
		<description><![CDATA[the output should be 5 5 5 5 5

but i know it will be incorrect for one of the operators for sure ;)]]></description>
		<content:encoded><![CDATA[<p>the output should be 5 5 5 5 5</p>
<p>but i know it will be incorrect for one of the operators for sure <img src="https://www.emblogic.com/blog/wp-includes/images/smilies/icon_wink.gif" alt=";)" class="wp-smiley" /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
