<?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; ankit.mishra</title>
	<atom:link href="https://www.emblogic.com/blog/author/ankit-mishra/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:Poject status..data compression and encryption</title>
		<link>https://www.emblogic.com/blog/08/e8poject-status-data-compression-and-encryption/</link>
		<comments>https://www.emblogic.com/blog/08/e8poject-status-data-compression-and-encryption/#comments</comments>
		<pubDate>Mon, 13 Aug 2012 06:45:50 +0000</pubDate>
		<dc:creator><![CDATA[ankit.mishra]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://emblogic.org/blog/?p=4678</guid>
		<description><![CDATA[Compression and decompression is done successfully for code length 4 Now trying to implement compression for code length 3 and 5.]]></description>
				<content:encoded><![CDATA[<p>Compression and decompression is done successfully for code length 4 Now trying to implement compression for code length 3 and 5.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/08/e8poject-status-data-compression-and-encryption/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/</link>
		<comments>https://www.emblogic.com/blog/08/e-8-project-status/#comments</comments>
		<pubDate>Wed, 08 Aug 2012 13:11:44 +0000</pubDate>
		<dc:creator><![CDATA[ankit.mishra]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://emblogic.org/blog/?p=4565</guid>
		<description><![CDATA[I have implemented the functions for master array generation and for calculation of no of distint character and code length.I have used switch case in main program.]]></description>
				<content:encoded><![CDATA[<p>I have implemented the functions for master array generation and for calculation of no of distint character and code length.I have used switch case in main program.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/08/e-8-project-status/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Can i initialize an union members like structure???if yes then why i am getting so much warning in the following programm????</title>
		<link>https://www.emblogic.com/blog/07/can-i-initialize-an-union-members-like-structureif-yes-then-why-i-am-getting-so-much-warning-in-the-following-programm/</link>
		<comments>https://www.emblogic.com/blog/07/can-i-initialize-an-union-members-like-structureif-yes-then-why-i-am-getting-so-much-warning-in-the-following-programm/#comments</comments>
		<pubDate>Sat, 07 Jul 2012 19:52:05 +0000</pubDate>
		<dc:creator><![CDATA[ankit.mishra]]></dc:creator>
				<category><![CDATA[Data Structures with C]]></category>

		<guid isPermaLink="false">http://emblogic.org/blog/?p=3832</guid>
		<description><![CDATA[#include&#60;stdio.h&#62; union logic { int i; char x[2]; //char y; }emb={510,&#8217;A&#8217;,&#8217;B&#8217;}; int main() { printf(&#8220;%d\n&#8221;,emb.i); printf(&#8220;%c\n&#8221;,emb.x[0]); printf(&#8220;%c\n&#8221;,emb.x[1]); printf(&#8220;%d\n&#8221;,emb.i); }]]></description>
				<content:encoded><![CDATA[<p>#include&lt;stdio.h&gt;</p>
<p>union logic<br />
{</p>
<p>int i;<br />
char x[2];<br />
//char y;</p>
<p>}emb={510,&#8217;A&#8217;,&#8217;B&#8217;};<br />
int main()<br />
{</p>
<p>printf(&#8220;%d\n&#8221;,emb.i);<br />
printf(&#8220;%c\n&#8221;,emb.x[0]);<br />
printf(&#8220;%c\n&#8221;,emb.x[1]);<br />
printf(&#8220;%d\n&#8221;,emb.i);<br />
}</p>
]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/07/can-i-initialize-an-union-members-like-structureif-yes-then-why-i-am-getting-so-much-warning-in-the-following-programm/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>I am getting segmentation fault in the following Pgm..please explain if u clear about structure ponter&#8230;i am facing the issue that &#8230;is it madatory to initialize  struct pointer?????</title>
		<link>https://www.emblogic.com/blog/07/i-am-getting-segmentation-fault-in-the-following-pgm-please-explain-if-u-clear-about-structure-ponter-i-am-facing-the-issue-that-is-it-madatory-to-initialize-struct-pointer/</link>
		<comments>https://www.emblogic.com/blog/07/i-am-getting-segmentation-fault-in-the-following-pgm-please-explain-if-u-clear-about-structure-ponter-i-am-facing-the-issue-that-is-it-madatory-to-initialize-struct-pointer/#comments</comments>
		<pubDate>Sat, 07 Jul 2012 15:10:49 +0000</pubDate>
		<dc:creator><![CDATA[ankit.mishra]]></dc:creator>
				<category><![CDATA[Data Structures with C]]></category>

		<guid isPermaLink="false">http://emblogic.org/blog/?p=3830</guid>
		<description><![CDATA[#include&#60;stdio.h&#62; #include&#60;string.h&#62; struct logic { char ch[10]; char x; int y; char z; //int i; }; int main() { struct logic *p; strcpy(p-&#62;ch,&#8221;hello&#8221;); p-&#62;x=&#8217;b&#8217;; p-&#62;y=42; p-&#62;z=&#8217;c&#8217;; printf(&#8220;%s\n%c\n%d\n%c\n&#8221;,p-&#62;ch,p-&#62;x,p-&#62;y,p-&#62;z); } &#160;]]></description>
				<content:encoded><![CDATA[<p>#include&lt;stdio.h&gt;<br />
#include&lt;string.h&gt;</p>
<p>struct logic<br />
{<br />
char ch[10];<br />
char x;<br />
int y;</p>
<p>char z;<br />
//int i;<br />
};</p>
<p>int main()<br />
{<br />
struct logic *p;<br />
strcpy(p-&gt;ch,&#8221;hello&#8221;);<br />
p-&gt;x=&#8217;b&#8217;;<br />
p-&gt;y=42;<br />
p-&gt;z=&#8217;c&#8217;;<br />
printf(&#8220;%s\n%c\n%d\n%c\n&#8221;,p-&gt;ch,p-&gt;x,p-&gt;y,p-&gt;z);<br />
}</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/07/i-am-getting-segmentation-fault-in-the-following-pgm-please-explain-if-u-clear-about-structure-ponter-i-am-facing-the-issue-that-is-it-madatory-to-initialize-struct-pointer/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Facing issues in executing makefile&#8230;using make command</title>
		<link>https://www.emblogic.com/blog/07/facing-issues-in-executing-makefile-using-make-command/</link>
		<comments>https://www.emblogic.com/blog/07/facing-issues-in-executing-makefile-using-make-command/#comments</comments>
		<pubDate>Tue, 03 Jul 2012 14:20:54 +0000</pubDate>
		<dc:creator><![CDATA[ankit.mishra]]></dc:creator>
				<category><![CDATA[Project Management Tools]]></category>

		<guid isPermaLink="false">http://emblogic.org/blog/?p=3780</guid>
		<description><![CDATA[i have created three source files and thee header files&#8230; the  name and containt of these file area as follows&#8230; main.c      one include file and one printf statment one.c       one include file and one printf statments two.c       one include file &#8230; <a href="https://www.emblogic.com/blog/07/facing-issues-in-executing-makefile-using-make-command/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>i have created three source files and thee header files&#8230;</p>
<p>the  name and containt of these file area as follows&#8230;</p>
<p>main.c      one include file and one printf statment</p>
<p>one.c       one include file and one printf statments</p>
<p>two.c       one include file and one printf statement</p>
<p>header1.h     only printf statement</p>
<p>header2.h      only printf statment</p>
<p>header3.h      only printf statments</p>
<p>&nbsp;</p>
<p>i got error while executing it and no object code provided.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/07/facing-issues-in-executing-makefile-using-make-command/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>facing associativity issue in last two statments of the followin programme&#8230;pls explain it</title>
		<link>https://www.emblogic.com/blog/07/facing-associativity-issue-in-last-two-statments-of-the-followin-programme-pls-explain-it/</link>
		<comments>https://www.emblogic.com/blog/07/facing-associativity-issue-in-last-two-statments-of-the-followin-programme-pls-explain-it/#comments</comments>
		<pubDate>Mon, 02 Jul 2012 17:13:56 +0000</pubDate>
		<dc:creator><![CDATA[ankit.mishra]]></dc:creator>
				<category><![CDATA[Data Structures with C]]></category>

		<guid isPermaLink="false">http://emblogic.org/blog/?p=3755</guid>
		<description><![CDATA[{ int x=1,y=1,z=1; x+=y+=z; printf(&#8220;%d\n&#8221;,x&#60;y?y:x); printf(&#8220;%d\n&#8221;,x&#60;y?x++:y++); printf(&#8220;%d\n&#8221;,x);printf(&#8220;%d\n&#8221;,y); printf(&#8220;%d\n&#8221;,z+=x&#60;y?x++:y++); printf(&#8220;%d\n&#8221;,y);printf(&#8220;%d\n&#8221;,z); x=3,y=z=4; printf(&#8220;%d\n&#8221;,z&#62;=y&#62;=x?1:0); printf(&#8220;%d\n&#8221;,z&#62;=y&#38;&#38;y&#62;=x)]]></description>
				<content:encoded><![CDATA[<p>{<br />
int x=1,y=1,z=1;<br />
x+=y+=z;<br />
printf(&#8220;%d\n&#8221;,x&lt;y?y:x);<br />
printf(&#8220;%d\n&#8221;,x&lt;y?x++:y++);<br />
printf(&#8220;%d\n&#8221;,x);printf(&#8220;%d\n&#8221;,y);<br />
printf(&#8220;%d\n&#8221;,z+=x&lt;y?x++:y++);<br />
printf(&#8220;%d\n&#8221;,y);printf(&#8220;%d\n&#8221;,z);<br />
x=3,y=z=4;<br />
printf(&#8220;%d\n&#8221;,z&gt;=y&gt;=x?1:0);<br />
printf(&#8220;%d\n&#8221;,z&gt;=y&amp;&amp;y&gt;=x)</p>
]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/07/facing-associativity-issue-in-last-two-statments-of-the-followin-programme-pls-explain-it/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>hi i have created the master array by reading from a text file&#8230;</title>
		<link>https://www.emblogic.com/blog/06/hi-i-have-created-the-master-array-by-reading-from-a-text-file/</link>
		<comments>https://www.emblogic.com/blog/06/hi-i-have-created-the-master-array-by-reading-from-a-text-file/#comments</comments>
		<pubDate>Wed, 27 Jun 2012 19:24:38 +0000</pubDate>
		<dc:creator><![CDATA[ankit.mishra]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://emblogic.org/blog/?p=3518</guid>
		<description><![CDATA[]]></description>
				<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/06/hi-i-have-created-the-master-array-by-reading-from-a-text-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
