<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>EmbLogic &#187; arjumand</title>
	<atom:link href="https://www.emblogic.com/blog/author/arjumand/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.emblogic.com/blog</link>
	<description>Embedded System and ARM Training</description>
	<lastBuildDate>Tue, 03 Mar 2020 13:00:06 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.9.1</generator>
	<item>
		<title>Seminar Topic</title>
		<link>https://www.emblogic.com/blog/02/seminar-topic/</link>
		<comments>https://www.emblogic.com/blog/02/seminar-topic/#comments</comments>
		<pubDate>Mon, 11 Feb 2013 17:40:42 +0000</pubDate>
		<dc:creator><![CDATA[arjumand]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://emblogic.org/blog/?p=6151</guid>
		<description><![CDATA[Can anyone suggest me Presentation Topic related to embedded systems&#8230;&#8230;i have a seminar.]]></description>
				<content:encoded><![CDATA[<p>Can anyone suggest me Presentation Topic related to embedded systems&#8230;&#8230;i have a seminar.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/02/seminar-topic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title></title>
		<link>https://www.emblogic.com/blog/06/3462/</link>
		<comments>https://www.emblogic.com/blog/06/3462/#comments</comments>
		<pubDate>Thu, 21 Jun 2012 18:56:14 +0000</pubDate>
		<dc:creator><![CDATA[arjumand]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://emblogic.org/blog/?p=3462</guid>
		<description><![CDATA[did recursive functions and Console i/o file i/o]]></description>
				<content:encoded><![CDATA[<p>did recursive functions and Console i/o file i/o</p>
]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/06/3462/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title></title>
		<link>https://www.emblogic.com/blog/06/3396/</link>
		<comments>https://www.emblogic.com/blog/06/3396/#comments</comments>
		<pubDate>Tue, 19 Jun 2012 18:53:23 +0000</pubDate>
		<dc:creator><![CDATA[arjumand]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://emblogic.org/blog/?p=3396</guid>
		<description><![CDATA[I am trying to install fedora on a separate internal hard disk&#8230;&#8230;.but an error of &#8220;not enough memory&#8221;comes. Plz Help!!]]></description>
				<content:encoded><![CDATA[<p>I am trying to install fedora on a separate internal hard disk&#8230;&#8230;.but an error of &#8220;not enough memory&#8221;comes. Plz Help!!</p>
]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/06/3396/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Solve the Mystery of pre and post increment operators</title>
		<link>https://www.emblogic.com/blog/06/solve-the-mystery-of-pre-and-post-increment-operators/</link>
		<comments>https://www.emblogic.com/blog/06/solve-the-mystery-of-pre-and-post-increment-operators/#comments</comments>
		<pubDate>Sun, 10 Jun 2012 07:39:44 +0000</pubDate>
		<dc:creator><![CDATA[arjumand]]></dc:creator>
				<category><![CDATA[Data Structures with C]]></category>

		<guid isPermaLink="false">http://emblogic.org/blog/?p=3156</guid>
		<description><![CDATA[Assume any value of k eg 1 Q1 d=k++/++k&#8230;&#8230;..print d and k, k=3; why is the reult 1 for d??? Q2 d=printf(&#8220;%d%d%d&#8221;,++k,k,k++); &#160; printf(&#8220;%d%d%d&#8221;,k++,k,k++); Why the result vary in both the printf statements.??? Q3 printf(&#8220;%d%d%d&#8221;,k,k++,++k); what will be the output &#8230; <a href="https://www.emblogic.com/blog/06/solve-the-mystery-of-pre-and-post-increment-operators/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Assume any value of k eg 1</p>
<p>Q1 d=k++/++k&#8230;&#8230;..print d and k, k=3;</p>
<p>why is the reult 1 for d???</p>
<p>Q2 d=printf(&#8220;%d%d%d&#8221;,++k,k,k++);</p>
<p>&nbsp;</p>
<p>printf(&#8220;%d%d%d&#8221;,k++,k,k++);</p>
<p>Why the result vary in both the printf statements.???</p>
<p>Q3 printf(&#8220;%d%d%d&#8221;,k,k++,++k);</p>
<p>what will be the output and WHY???</p>
<p>Q4 printf(&#8220;%d%d%d&#8221;,++k,k++,k);</p>
<p>output and WHY??</p>
<p>Q5 printf(&#8220;%d%d%d&#8221;,k++,++k,k);</p>
<p>output and WHY??</p>
]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/06/solve-the-mystery-of-pre-and-post-increment-operators/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>
