<?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: Linked List</title>
	<atom:link href="https://www.emblogic.com/blog/10/linked-list/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.emblogic.com/blog/10/linked-list/</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: Kuldeep Dhanotia</title>
		<link>https://www.emblogic.com/blog/10/linked-list/#comment-270</link>
		<dc:creator><![CDATA[Kuldeep Dhanotia]]></dc:creator>
		<pubDate>Sat, 01 Oct 2011 12:58:55 +0000</pubDate>
		<guid isPermaLink="false">http://emblogic.org/blog/?p=900#comment-270</guid>
		<description><![CDATA[i thought its problem on blog its not working properly
add only this statement inside ur loop
temp-&gt;ptr=(struct node*)malloc(sizeof(struct node));
and add any thing in ur info field by scanf
into
temp-&gt;info=info type variable;]]></description>
		<content:encoded><![CDATA[<p>i thought its problem on blog its not working properly<br />
add only this statement inside ur loop<br />
temp-&gt;ptr=(struct node*)malloc(sizeof(struct node));<br />
and add any thing in ur info field by scanf<br />
into<br />
temp-&gt;info=info type variable;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kuldeep Dhanotia</title>
		<link>https://www.emblogic.com/blog/10/linked-list/#comment-269</link>
		<dc:creator><![CDATA[Kuldeep Dhanotia]]></dc:creator>
		<pubDate>Sat, 01 Oct 2011 12:54:31 +0000</pubDate>
		<guid isPermaLink="false">http://emblogic.org/blog/?p=900#comment-269</guid>
		<description><![CDATA[ignore the above code its wrong...    
int main()
15 {
16         int i;
17         start=temp=(struct node*)malloc(sizeof(struct node));
18
19         for(i=0 ; i ptr=(struct node*)malloc(sizeof(struct node));
22                 
23                 }
24         return 0;
25 }]]></description>
		<content:encoded><![CDATA[<p>ignore the above code its wrong&#8230;<br />
int main()<br />
15 {<br />
16         int i;<br />
17         start=temp=(struct node*)malloc(sizeof(struct node));<br />
18<br />
19         for(i=0 ; i ptr=(struct node*)malloc(sizeof(struct node));<br />
22<br />
23                 }<br />
24         return 0;<br />
25 }</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kuldeep Dhanotia</title>
		<link>https://www.emblogic.com/blog/10/linked-list/#comment-268</link>
		<dc:creator><![CDATA[Kuldeep Dhanotia]]></dc:creator>
		<pubDate>Sat, 01 Oct 2011 12:51:45 +0000</pubDate>
		<guid isPermaLink="false">http://emblogic.org/blog/?p=900#comment-268</guid>
		<description><![CDATA[u are reallocating the temp ,so ur starting pointer start and temp points to two different pointers and ur code should be look like this
    main()
15 {
16         int i;
17         start=temp=(struct node*)malloc(sizeof(struct node));
18
19         for(i=0 ; i ptr=(struct node*)malloc(sizeof(struct node));
22                 
23                 }
24         return 0;
25 }]]></description>
		<content:encoded><![CDATA[<p>u are reallocating the temp ,so ur starting pointer start and temp points to two different pointers and ur code should be look like this<br />
    main()<br />
15 {<br />
16         int i;<br />
17         start=temp=(struct node*)malloc(sizeof(struct node));<br />
18<br />
19         for(i=0 ; i ptr=(struct node*)malloc(sizeof(struct node));<br />
22<br />
23                 }<br />
24         return 0;<br />
25 }</p>
]]></content:encoded>
	</item>
</channel>
</rss>
