<?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; sumit.ahuja</title>
	<atom:link href="https://www.emblogic.com/blog/author/sumit-ahuja/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>E8 : TODAY&#8217;s STATUS</title>
		<link>https://www.emblogic.com/blog/08/e8-todays-status/</link>
		<comments>https://www.emblogic.com/blog/08/e8-todays-status/#comments</comments>
		<pubDate>Thu, 16 Aug 2012 16:10:10 +0000</pubDate>
		<dc:creator><![CDATA[sumit.ahuja]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://emblogic.org/blog/?p=4784</guid>
		<description><![CDATA[i have practiced the concept of pipes using fork..also implemented the inter process communication between two processes using fork n passing the file descriptor through execl.. &#160;]]></description>
				<content:encoded><![CDATA[<p>i have practiced the concept of pipes using fork..also implemented the inter process communication between two processes using fork n passing the file descriptor through execl..</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/08/e8-todays-status/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>E-8 PROJECT STATUS</title>
		<link>https://www.emblogic.com/blog/08/e-8-project-status-4/</link>
		<comments>https://www.emblogic.com/blog/08/e-8-project-status-4/#comments</comments>
		<pubDate>Wed, 15 Aug 2012 06:41:19 +0000</pubDate>
		<dc:creator><![CDATA[sumit.ahuja]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://emblogic.org/blog/?p=4742</guid>
		<description><![CDATA[i have completed my compression n decompression for codelength 4..n done by using separate functions for masterarray,codelength,encryption key , compression n decompression.. nw am starting up with the same for codelength 2.. n then will optimise the whole using switch &#8230; <a href="https://www.emblogic.com/blog/08/e-8-project-status-4/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>i have completed my compression n decompression for codelength 4..n done by using separate functions for masterarray,codelength,encryption key , compression n decompression..</p>
<p>nw am starting up with the same for codelength 2..</p>
<p>n then will optimise the whole using switch case n try 2 form a formula 4 ecery code length compression n decommpression part..</p>
<p>&nbsp;</p>
<p>regards-</p>
<p>sumit ahuja</p>
]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/08/e-8-project-status-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ARRAY: the name of confusion</title>
		<link>https://www.emblogic.com/blog/07/array-the-name-of-confusion/</link>
		<comments>https://www.emblogic.com/blog/07/array-the-name-of-confusion/#comments</comments>
		<pubDate>Tue, 10 Jul 2012 08:26:13 +0000</pubDate>
		<dc:creator><![CDATA[sumit.ahuja]]></dc:creator>
				<category><![CDATA[Data Structures with C]]></category>

		<guid isPermaLink="false">http://emblogic.org/blog/?p=3852</guid>
		<description><![CDATA[#include &#60;stdio.h&#62; int main() { int a[5][5],c[5][5],i,j; int b[2][3]={{1,2,3},{3,4,5}};         for(i=0;i&#60;5;i++)         {         for(j=0;j&#60;5;j++)         {         printf(&#8220;array B: %d\n&#8221;,b[i][j]);         printf(&#8220;enter array A: &#8220;);         scanf(&#8220;%d&#8221;,&#38;a[i][j]);         c[i][j]=a[i][j]+b[i][j];         printf(&#8220;c[%d}[%d] : %d \n\n  &#8220;,i,j,c[i][j]); } } return 0; &#8230; <a href="https://www.emblogic.com/blog/07/array-the-name-of-confusion/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>#include &lt;stdio.h&gt;<br />
int main()<br />
{<br />
<strong> int a[5][5],c[5][5],i,j;</strong><br />
<strong>int b[2][3]={{1,2,3},{3,4,5}};</strong></p>
<p><strong>        for(i=0;i&lt;5;i++)</strong><br />
<strong>        {</strong><br />
<strong>        for(j=0;j&lt;5;j++)</strong><br />
<strong>        {</strong><br />
<strong>        printf(&#8220;array B: %d\n&#8221;,b[i][j]);</strong><br />
<strong>        printf(&#8220;enter array A: &#8220;);</strong><br />
<strong>        scanf(&#8220;%d&#8221;,&amp;a[i][j]);</strong><br />
<strong>        c[i][j]=a[i][j]+b[i][j];</strong><br />
<strong>        printf(&#8220;c[%d}[%d] : %d \n\n  &#8220;,i,j,c[i][j]);</strong><br />
}</p>
<p>}<br />
return 0;</p>
<p>}<br />
<strong></strong><em><strong><br />
</strong></em></p>
<p><em><strong>OUTPUT:</strong></em></p>
<p>&nbsp;</p>
<p><strong>array B: 1</strong><br />
<strong>enter array A: 2</strong><br />
<strong>c[0}[0] : 3 </strong></p>
<p><strong>  array B: 2</strong><br />
<strong>enter array A: 2</strong><br />
<strong>c[0}[1] : 4 </strong></p>
<p><strong>  array B: 3</strong><br />
<strong>enter array A: 2</strong><br />
<strong>c[0}[2] : 5 </strong></p>
<p><strong>  array B: 3</strong><br />
<strong>enter array A: 2</strong><br />
<strong>c[0}[3] : 5 </strong></p>
<p><strong>  array B: 4</strong><br />
<strong>enter array A: 2</strong><br />
<strong>c[0}[4] : 6 </strong></p>
<p><strong>  array B: 3</strong><br />
<strong>enter array A: 2</strong><br />
<strong>c[1}[0] : 5 </strong></p>
<p><strong>  array B: 4</strong><br />
<strong>enter array A: 2</strong><br />
<strong>c[1}[1] : 6 </strong></p>
<p><strong>  array B: 5</strong><br />
<strong>enter array A: 2</strong><br />
<strong>c[1}[2] : 7 </strong></p>
<p><strong>  array B: 3</strong><br />
<strong>enter array A: 2</strong><br />
<strong>c[1}[3] : 5 </strong></p>
<p><strong>  array B: 4</strong><br />
<strong>enter array A: 2</strong><br />
<strong>c[1}[4] : 6 </strong></p>
<p><strong>  array B: 3</strong><br />
<strong>enter array A: 2</strong><br />
<strong>c[2}[0] : 5 </strong></p>
<p><strong>  array B: 4</strong><br />
<strong>enter array A: 2</strong><br />
<strong>c[2}[1] : 6 </strong></p>
<p><strong>  array B: 5</strong><br />
<strong>enter array A: 2</strong><br />
<strong>c[2}[2] : 7 </strong></p>
<p><strong>  array B: 5</strong><br />
<strong>enter array A: 2</strong><br />
<strong>c[2}[3] : 7 </strong></p>
<p><strong>  array B: 6</strong><br />
<strong>enter array A: 2</strong><br />
<strong>c[2}[4] : 8 </strong></p>
<p><strong>  array B: 5</strong><br />
<strong>enter array A: 2</strong><br />
<strong>c[3}[0] : 7 </strong></p>
<p><strong>  array B: 6</strong><br />
<strong>enter array A: 2</strong><br />
<strong>c[3}[1] : 8 </strong></p>
<p><strong>  array B: 5</strong><br />
<strong>enter array A: 2</strong><br />
<strong>c[3}[2] : 7 </strong></p>
<p><strong>  array B: 6</strong><br />
<strong>enter array A: 2</strong><br />
<strong>c[3}[3] : 8 </strong></p>
<p><strong>  array B: 7</strong><br />
<strong>enter array A: 2</strong><br />
<strong>c[3}[4] : 9 </strong></p>
<p><strong>  array B: 6</strong><br />
<strong>enter array A: 2</strong><br />
<strong>c[4}[0] : 8 </strong></p>
<p><strong>  array B: 7</strong><br />
<strong>enter array A: 2</strong><br />
<strong>c[4}[1] : 9 </strong></p>
<p><strong>  array B: 5</strong><br />
<strong>enter array A: 2</strong><br />
<strong>c[4}[2] : 7 </strong></p>
<p><strong>  array B: 6</strong><br />
<strong>enter array A: 2</strong><br />
<strong>c[4}[3] : 8 </strong></p>
<p><strong>  array B: 5</strong><br />
<strong>enter array A: 2</strong><br />
<strong>c[4}[4] : 7</strong></p>
<p>&nbsp;</p>
<p><strong>Q-1</strong>)  <strong>ARRAY b[2][3] IS BEING INITIALISED</strong>..Then how is compiler giving other values as shown in <strong>OUTPUT??</strong><br />
2)  <strong>IF ITZ ABOUT CHECK-BOUND</strong>,,then give the complete justification..coz here we r <strong>INITIALISING AN ARRAY</strong> , <strong>not inputing</strong> IT??</p>
]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/07/array-the-name-of-confusion/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>a query for int overflow</title>
		<link>https://www.emblogic.com/blog/07/a-query-for-int-overflow/</link>
		<comments>https://www.emblogic.com/blog/07/a-query-for-int-overflow/#comments</comments>
		<pubDate>Mon, 02 Jul 2012 05:32:48 +0000</pubDate>
		<dc:creator><![CDATA[sumit.ahuja]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://emblogic.org/blog/?p=3733</guid>
		<description><![CDATA[int i=2147483647; printf(“%d %d %d\n”,i,i+1,i+2); output  2147483647  – 2147483648  -2147483647 &#160; is this the case of INTEGER OVERFLOW?? JUSTIFY&#8230;]]></description>
				<content:encoded><![CDATA[<p>int i=2147483647;</p>
<p>printf(“%d %d %d\n”,i,i+1,i+2);</p>
<p><strong>output </strong><br />
<strong><em>2147483647  – 2147483648  -2147483647</em></strong></p>
<p>&nbsp;</p>
<p>is this the case of INTEGER OVERFLOW?? JUSTIFY&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/07/a-query-for-int-overflow/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>how to print the result of an arithmetic calculation in a shell script</title>
		<link>https://www.emblogic.com/blog/06/how-to-print-the-result-of-an-arithmetic-calculation-in-a-shell-script/</link>
		<comments>https://www.emblogic.com/blog/06/how-to-print-the-result-of-an-arithmetic-calculation-in-a-shell-script/#comments</comments>
		<pubDate>Wed, 27 Jun 2012 14:10:08 +0000</pubDate>
		<dc:creator><![CDATA[sumit.ahuja]]></dc:creator>
				<category><![CDATA[Shell Scripts]]></category>

		<guid isPermaLink="false">http://emblogic.org/blog/?p=3606</guid>
		<description><![CDATA[echo 4 +5 &#160; wat should i use to make its ans= 9 . plz tell me the complete statement]]></description>
				<content:encoded><![CDATA[<p>echo 4 +5</p>
<p>&nbsp;</p>
<p>wat should i use to make its ans= 9 .</p>
<p>plz tell me the complete statement</p>
]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/06/how-to-print-the-result-of-an-arithmetic-calculation-in-a-shell-script/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>master array done..working on assignment-1</title>
		<link>https://www.emblogic.com/blog/06/master-array-done-working-on-assignment-1/</link>
		<comments>https://www.emblogic.com/blog/06/master-array-done-working-on-assignment-1/#comments</comments>
		<pubDate>Wed, 27 Jun 2012 14:06:19 +0000</pubDate>
		<dc:creator><![CDATA[sumit.ahuja]]></dc:creator>
				<category><![CDATA[Data Structures with C]]></category>

		<guid isPermaLink="false">http://emblogic.org/blog/?p=3604</guid>
		<description><![CDATA[]]></description>
				<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/06/master-array-done-working-on-assignment-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>unexpected output of operation on post n pre increment operators</title>
		<link>https://www.emblogic.com/blog/06/unexpected-output-of-operation-on-post-n-pre-increment-operators/</link>
		<comments>https://www.emblogic.com/blog/06/unexpected-output-of-operation-on-post-n-pre-increment-operators/#comments</comments>
		<pubDate>Wed, 20 Jun 2012 12:08:13 +0000</pubDate>
		<dc:creator><![CDATA[sumit.ahuja]]></dc:creator>
				<category><![CDATA[Data Structures with C]]></category>

		<guid isPermaLink="false">http://emblogic.org/blog/?p=3409</guid>
		<description><![CDATA[int main() { int g,l; int l=100; g=l- &#8211; + l++; printf(&#8220;g = %d&#8221;,g); return 0; } &#160; predicted output:200 &#160; actual output:198 why?? post incrmt r given d higher pref&#8230;then ans should be 200.]]></description>
				<content:encoded><![CDATA[<p>int main()</p>
<p>{</p>
<p>int g,l;</p>
<p>int l=100;</p>
<p>g=l- &#8211; + l++;</p>
<p>printf(&#8220;g = %d&#8221;,g);</p>
<p>return 0;</p>
<p>}</p>
<p>&nbsp;</p>
<p>predicted output:200</p>
<p>&nbsp;</p>
<p>actual output:198</p>
<p>why??</p>
<p>post incrmt r given d higher pref&#8230;then ans should be 200.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/06/unexpected-output-of-operation-on-post-n-pre-increment-operators/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
