<?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: increments in printf</title>
	<atom:link href="https://www.emblogic.com/blog/05/increments-in-printf/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.emblogic.com/blog/05/increments-in-printf/</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: sandeep.kumar</title>
		<link>https://www.emblogic.com/blog/05/increments-in-printf/#comment-820</link>
		<dc:creator><![CDATA[sandeep.kumar]]></dc:creator>
		<pubDate>Mon, 18 Jun 2012 07:09:32 +0000</pubDate>
		<guid isPermaLink="false">http://emblogic.org/blog/?p=2862#comment-820</guid>
		<description><![CDATA[operator precedence is 

postincrement
preincrement
normal variable

and evaluated from right to left

do this]]></description>
		<content:encoded><![CDATA[<p>operator precedence is </p>
<p>postincrement<br />
preincrement<br />
normal variable</p>
<p>and evaluated from right to left</p>
<p>do this</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anil</title>
		<link>https://www.emblogic.com/blog/05/increments-in-printf/#comment-777</link>
		<dc:creator><![CDATA[Anil]]></dc:creator>
		<pubDate>Fri, 25 May 2012 09:31:30 +0000</pubDate>
		<guid isPermaLink="false">http://emblogic.org/blog/?p=2862#comment-777</guid>
		<description><![CDATA[since, y=10 then ++y pre-incremented of  y =11, ie y=10 replaced with y=11, then y ie y=11, again it incremented ++y=12, ie y=11 replaced with y=12. and finally print value of y 3-times.
It means, ++y just increment the value of y and replaced it with new value.]]></description>
		<content:encoded><![CDATA[<p>since, y=10 then ++y pre-incremented of  y =11, ie y=10 replaced with y=11, then y ie y=11, again it incremented ++y=12, ie y=11 replaced with y=12. and finally print value of y 3-times.<br />
It means, ++y just increment the value of y and replaced it with new value.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gaurav.jaswal</title>
		<link>https://www.emblogic.com/blog/05/increments-in-printf/#comment-773</link>
		<dc:creator><![CDATA[gaurav.jaswal]]></dc:creator>
		<pubDate>Thu, 17 May 2012 17:49:38 +0000</pubDate>
		<guid isPermaLink="false">http://emblogic.org/blog/?p=2862#comment-773</guid>
		<description><![CDATA[can you explain how your explanation output as above?]]></description>
		<content:encoded><![CDATA[<p>can you explain how your explanation output as above?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gaurav.jaswal</title>
		<link>https://www.emblogic.com/blog/05/increments-in-printf/#comment-772</link>
		<dc:creator><![CDATA[gaurav.jaswal]]></dc:creator>
		<pubDate>Thu, 17 May 2012 17:45:43 +0000</pubDate>
		<guid isPermaLink="false">http://emblogic.org/blog/?p=2862#comment-772</guid>
		<description><![CDATA[in that case too, output should be 
12 11 11
isn&#039;t it?]]></description>
		<content:encoded><![CDATA[<p>in that case too, output should be<br />
12 11 11<br />
isn&#8217;t it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anil</title>
		<link>https://www.emblogic.com/blog/05/increments-in-printf/#comment-771</link>
		<dc:creator><![CDATA[Anil]]></dc:creator>
		<pubDate>Thu, 17 May 2012 17:27:11 +0000</pubDate>
		<guid isPermaLink="false">http://emblogic.org/blog/?p=2862#comment-771</guid>
		<description><![CDATA[Since, int y=10 is local variable.so it will be store in stack. 
we know that stack is first-in-last-out.
According to this rule, y will be store in stack from left to right, and output will be come from right to left.]]></description>
		<content:encoded><![CDATA[<p>Since, int y=10 is local variable.so it will be store in stack.<br />
we know that stack is first-in-last-out.<br />
According to this rule, y will be store in stack from left to right, and output will be come from right to left.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
