<?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; Tanvir Kumar</title>
	<atom:link href="https://www.emblogic.com/blog/author/tanvir520/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>Please Explain!</title>
		<link>https://www.emblogic.com/blog/06/please-explain/</link>
		<comments>https://www.emblogic.com/blog/06/please-explain/#comments</comments>
		<pubDate>Thu, 06 Jun 2013 13:59:56 +0000</pubDate>
		<dc:creator><![CDATA[Tanvir Kumar]]></dc:creator>
				<category><![CDATA[Data Structures with C]]></category>

		<guid isPermaLink="false">http://www.emblogic.com/blog/?p=6528</guid>
		<description><![CDATA[struct ABC { int a; float b; char c; }; int main(){ struct ABC *ptr=(struct ABC *)0; ptr++; printf(&#8220;Size of structure is: %d&#8221;,*ptr); return 0; } Can u please explain this?]]></description>
				<content:encoded><![CDATA[<p>struct ABC<br />
{<br />
int a;<br />
float b;<br />
char c;<br />
};<br />
int main(){<br />
struct ABC *ptr=(struct ABC *)0;<br />
ptr++;<br />
printf(&#8220;Size of structure is: %d&#8221;,*ptr);<br />
return 0;<br />
}</p>
<p>Can u please explain this?</p>
]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/06/please-explain/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to prints 1 to 100 without using loop and without using recursion!</title>
		<link>https://www.emblogic.com/blog/06/how-to-prints-1-to-100-without-using-loop-and-without-using-recursion/</link>
		<comments>https://www.emblogic.com/blog/06/how-to-prints-1-to-100-without-using-loop-and-without-using-recursion/#comments</comments>
		<pubDate>Thu, 06 Jun 2013 12:40:00 +0000</pubDate>
		<dc:creator><![CDATA[Tanvir Kumar]]></dc:creator>
				<category><![CDATA[Data Structures with C]]></category>

		<guid isPermaLink="false">http://www.emblogic.com/blog/?p=6526</guid>
		<description><![CDATA[Please explain how to prints 1 to 100 without using loop and without using recursion!!.]]></description>
				<content:encoded><![CDATA[<p>Please explain how to prints 1 to 100 without using loop and without using recursion!!.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/06/how-to-prints-1-to-100-without-using-loop-and-without-using-recursion/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Plz Explain how to solve this question?</title>
		<link>https://www.emblogic.com/blog/05/plz-explain-how-to-solve-this-question/</link>
		<comments>https://www.emblogic.com/blog/05/plz-explain-how-to-solve-this-question/#comments</comments>
		<pubDate>Tue, 21 May 2013 12:13:24 +0000</pubDate>
		<dc:creator><![CDATA[Tanvir Kumar]]></dc:creator>
				<category><![CDATA[Data Structures with C]]></category>
		<category><![CDATA[varun]]></category>

		<guid isPermaLink="false">http://www.emblogic.com/blog/?p=6486</guid>
		<description><![CDATA[int main(){     int a[]={10,20,30,40};     int i=3,x;     x=1*a[--i]+2*a[--i]+3*a[--i];     printf(&#8220;%d&#8221;,x); }]]></description>
				<content:encoded><![CDATA[<div>int main(){</div>
<div>    int a[]={10,20,30,40};</div>
<div>    int i=3,x;</div>
<div>    x=1*a[--i]+2*a[--i]+3*a[--i];</div>
<div>    printf(&#8220;%d&#8221;,x);</div>
<div>}</div>
]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/05/plz-explain-how-to-solve-this-question/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Character driver</title>
		<link>https://www.emblogic.com/blog/04/character-driver-8/</link>
		<comments>https://www.emblogic.com/blog/04/character-driver-8/#comments</comments>
		<pubDate>Wed, 24 Apr 2013 11:14:39 +0000</pubDate>
		<dc:creator><![CDATA[Tanvir Kumar]]></dc:creator>
				<category><![CDATA[Character Driver]]></category>

		<guid isPermaLink="false">http://www.emblogic.com/blog/?p=6402</guid>
		<description><![CDATA[Sir, i have completed read, write operation in character driver, using semaphore,ioctl. Also implementing kernel timer. &#160;]]></description>
				<content:encoded><![CDATA[<p>Sir,</p>
<p>i have completed read, write operation in character driver, using semaphore,ioctl. Also implementing kernel timer.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/04/character-driver-8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lint command</title>
		<link>https://www.emblogic.com/blog/11/lint-command/</link>
		<comments>https://www.emblogic.com/blog/11/lint-command/#comments</comments>
		<pubDate>Fri, 02 Nov 2012 08:50:39 +0000</pubDate>
		<dc:creator><![CDATA[Tanvir Kumar]]></dc:creator>
				<category><![CDATA[Data Structures with C]]></category>

		<guid isPermaLink="false">http://emblogic.org/blog/?p=5625</guid>
		<description><![CDATA[sir, when i use lint command on terminal i get error &#8220;command not found&#8221;]]></description>
				<content:encoded><![CDATA[<p>sir,</p>
<p>when i use lint command on terminal i get error &#8220;command not found&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/11/lint-command/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>project status</title>
		<link>https://www.emblogic.com/blog/10/project-status-21/</link>
		<comments>https://www.emblogic.com/blog/10/project-status-21/#comments</comments>
		<pubDate>Tue, 30 Oct 2012 05:51:11 +0000</pubDate>
		<dc:creator><![CDATA[Tanvir Kumar]]></dc:creator>
				<category><![CDATA[Project 2: Multiple Data Compression and Encryption]]></category>

		<guid isPermaLink="false">http://emblogic.org/blog/?p=5612</guid>
		<description><![CDATA[sir, i have completed 3 bit and 5 bit and 4 bit data compression and decompression.]]></description>
				<content:encoded><![CDATA[<p><span class="GRcorrect">sir</span>,</p>
<p><span class="GRspelling">i</span> have completed 3 bit and 5 bit and 4 bit data compression and decompression.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/10/project-status-21/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Status of 2nd project</title>
		<link>https://www.emblogic.com/blog/10/status-of-2nd-project/</link>
		<comments>https://www.emblogic.com/blog/10/status-of-2nd-project/#comments</comments>
		<pubDate>Wed, 17 Oct 2012 04:59:20 +0000</pubDate>
		<dc:creator><![CDATA[Tanvir Kumar]]></dc:creator>
				<category><![CDATA[Project 2: Multiple Data Compression and Encryption]]></category>

		<guid isPermaLink="false">http://emblogic.org/blog/?p=5568</guid>
		<description><![CDATA[sir, i am working on 3bit compression and decompression. &#160;]]></description>
				<content:encoded><![CDATA[<p>sir,</p>
<p>i am working on 3bit compression and decompression.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/10/status-of-2nd-project/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>error</title>
		<link>https://www.emblogic.com/blog/08/error-3/</link>
		<comments>https://www.emblogic.com/blog/08/error-3/#comments</comments>
		<pubDate>Thu, 23 Aug 2012 12:28:00 +0000</pubDate>
		<dc:creator><![CDATA[Tanvir Kumar]]></dc:creator>
				<category><![CDATA[Data Structures with C]]></category>

		<guid isPermaLink="false">http://emblogic.org/blog/?p=5013</guid>
		<description><![CDATA[#include&#60;stdio.h&#62; int main() { int i; i = 10; print(i); return 0; } void print(int a) { printf(&#8220;%d\n&#8221;,a); } output:warning: conflicting types for ‘print’ [enabled by default] note: previous implicit declaration of ‘print’ was here]]></description>
				<content:encoded><![CDATA[<p>#include&lt;stdio.h&gt;<br />
int main()<br />
{<br />
int i;<br />
i = 10;<br />
print(i);<br />
return 0;<br />
}</p>
<p>void print(int a)<br />
{<br />
printf(&#8220;%d\n&#8221;,a);<br />
}<br />
output:warning: conflicting types for ‘print’ [enabled by default]<br />
note: previous implicit declaration of ‘print’ was here</p>
]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/08/error-3/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>E10:Escape sequence</title>
		<link>https://www.emblogic.com/blog/07/e10escape-sequence/</link>
		<comments>https://www.emblogic.com/blog/07/e10escape-sequence/#comments</comments>
		<pubDate>Thu, 26 Jul 2012 04:40:04 +0000</pubDate>
		<dc:creator><![CDATA[Tanvir Kumar]]></dc:creator>
				<category><![CDATA[Data Structures with C]]></category>

		<guid isPermaLink="false">http://emblogic.org/blog/?p=4203</guid>
		<description><![CDATA[In 3 question of second assignment, what does \1 and \W does? \W :it is unknown escape sequence but what does  \1 do ?]]></description>
				<content:encoded><![CDATA[<p>In 3 question of second assignment, what does \1 and \W does?</p>
<p>\W :it is unknown escape sequence but what does  \1 do ?</p>
]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/07/e10escape-sequence/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tanvir:E10:Assingment 2</title>
		<link>https://www.emblogic.com/blog/07/tanvire10assingment-2/</link>
		<comments>https://www.emblogic.com/blog/07/tanvire10assingment-2/#comments</comments>
		<pubDate>Sat, 21 Jul 2012 08:25:23 +0000</pubDate>
		<dc:creator><![CDATA[Tanvir Kumar]]></dc:creator>
				<category><![CDATA[Data Structures with C]]></category>

		<guid isPermaLink="false">http://emblogic.org/blog/?p=4107</guid>
		<description><![CDATA[sir i did five question of second assignment today.]]></description>
				<content:encoded><![CDATA[<p>sir</p>
<p>i did five question of second assignment today.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/07/tanvire10assingment-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>First assingment</title>
		<link>https://www.emblogic.com/blog/07/first-assingment/</link>
		<comments>https://www.emblogic.com/blog/07/first-assingment/#comments</comments>
		<pubDate>Fri, 20 Jul 2012 10:51:01 +0000</pubDate>
		<dc:creator><![CDATA[Tanvir Kumar]]></dc:creator>
				<category><![CDATA[Data Structures with C]]></category>

		<guid isPermaLink="false">http://emblogic.org/blog/?p=4081</guid>
		<description><![CDATA[sir, i completed my first assingment]]></description>
				<content:encoded><![CDATA[<p>sir,</p>
<p>i completed my first assingment</p>
]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/07/first-assingment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>problem in data structre</title>
		<link>https://www.emblogic.com/blog/02/problem-in-data-structre/</link>
		<comments>https://www.emblogic.com/blog/02/problem-in-data-structre/#comments</comments>
		<pubDate>Fri, 10 Feb 2012 05:17:11 +0000</pubDate>
		<dc:creator><![CDATA[Tanvir Kumar]]></dc:creator>
				<category><![CDATA[Data Structures with C]]></category>

		<guid isPermaLink="false">http://emblogic.org/blog/?p=1938</guid>
		<description><![CDATA[when using strlwr and strupr,  error come “undefined reference to strupr” i have used #include&#60;string.h&#62; but of no use what to do now?]]></description>
				<content:encoded><![CDATA[<p>when using strlwr and strupr,  error come “undefined reference to strupr” i have used #include&lt;string.h&gt; but of no use what to do now?</p>
]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/02/problem-in-data-structre/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>strlwr, strupr header file?</title>
		<link>https://www.emblogic.com/blog/02/strlwr-strupr-header-file/</link>
		<comments>https://www.emblogic.com/blog/02/strlwr-strupr-header-file/#comments</comments>
		<pubDate>Mon, 06 Feb 2012 08:00:37 +0000</pubDate>
		<dc:creator><![CDATA[Tanvir Kumar]]></dc:creator>
				<category><![CDATA[Data Structures with C]]></category>

		<guid isPermaLink="false">http://emblogic.org/blog/?p=1902</guid>
		<description><![CDATA[when using strlwr and strupr,  error come &#8220;undefined reference to strupr&#8221; i have used #include&#60;string.h&#62; but of no use what to do now?]]></description>
				<content:encoded><![CDATA[<p>when using strlwr and strupr,  error come &#8220;undefined reference to strupr&#8221;</p>
<p>i have used #include&lt;string.h&gt; but of no use</p>
<p>what to do now?</p>
]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/02/strlwr-strupr-header-file/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>problem in assingment 2</title>
		<link>https://www.emblogic.com/blog/01/problem-in-assingment-2/</link>
		<comments>https://www.emblogic.com/blog/01/problem-in-assingment-2/#comments</comments>
		<pubDate>Sat, 21 Jan 2012 10:53:17 +0000</pubDate>
		<dc:creator><![CDATA[Tanvir Kumar]]></dc:creator>
				<category><![CDATA[Data Structures with C]]></category>

		<guid isPermaLink="false">http://emblogic.org/blog/?p=1707</guid>
		<description><![CDATA[char input[] = &#8220;SSSWILTECH1\1\11W\WALLMP1&#8243;; what will \1 and \W do here please explain!]]></description>
				<content:encoded><![CDATA[<p>char input[] = &#8220;SSSWILTECH1\1\11W\WALLMP1&#8243;;</p>
<p>what will \1 and \W do here please explain!</p>
]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/01/problem-in-assingment-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>data type conversion</title>
		<link>https://www.emblogic.com/blog/01/data-type-conversion/</link>
		<comments>https://www.emblogic.com/blog/01/data-type-conversion/#comments</comments>
		<pubDate>Thu, 19 Jan 2012 07:11:35 +0000</pubDate>
		<dc:creator><![CDATA[Tanvir Kumar]]></dc:creator>
				<category><![CDATA[Data Structures with C]]></category>

		<guid isPermaLink="false">http://emblogic.org/blog/?p=1690</guid>
		<description><![CDATA[float f=55; printf(&#8220;value of f is %d\n&#8221;,f); printf(&#8220;value of f is %f\n&#8221;,f); printf(&#8220;value of f is %c\n&#8221;,f); what will this print&#8211;&#62; with explaination please]]></description>
				<content:encoded><![CDATA[<p>float f=55;<br />
printf(&#8220;value of f is %d\n&#8221;,f);<br />
printf(&#8220;value of f is %f\n&#8221;,f);<br />
printf(&#8220;value of f is %c\n&#8221;,f);</p>
<p>what will this print&#8211;&gt; with explaination please</p>
]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/01/data-type-conversion/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
