<?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 for C/C++ Programming Blog</title>
	<atom:link href="http://www.cpp-programming.net/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cpp-programming.net</link>
	<description>C/C++ Programming Resources</description>
	<lastBuildDate>Tue, 09 Mar 2010 22:07:48 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on gettimeofday function for windows by Abe</title>
		<link>http://www.cpp-programming.net/c-tidbits/gettimeofday-function-for-windows/comment-page-1/#comment-6301</link>
		<dc:creator>Abe</dc:creator>
		<pubDate>Tue, 09 Mar 2010 22:07:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.openasthra.com/c-tidbits/gettimeofday-function-for-windows/#comment-6301</guid>
		<description>Thnky you, for an excellent post</description>
		<content:encoded><![CDATA[<p>Thnky you, for an excellent post</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sorting a Linked List with Selection Sort by Beej&#39;s Bit Bucket &#187; Linkfest 6</title>
		<link>http://www.cpp-programming.net/c-tidbits/sorting-a-linked-list-with-selection-sort/comment-page-1/#comment-6300</link>
		<dc:creator>Beej&#39;s Bit Bucket &#187; Linkfest 6</dc:creator>
		<pubDate>Tue, 09 Mar 2010 20:00:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.openasthra.com/c-tidbits/sorting-a-linked-list-with-selection-sort/#comment-6300</guid>
		<description>[...] Sorting a Linked List with Selection Sort—a short-and-sweet blog piece [...]</description>
		<content:encoded><![CDATA[<p>[...] Sorting a Linked List with Selection Sort—a short-and-sweet blog piece [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Displaying execution time of a program by lini</title>
		<link>http://www.cpp-programming.net/c-tidbits/displaying-execution-time-of-a-program/comment-page-1/#comment-6253</link>
		<dc:creator>lini</dc:creator>
		<pubDate>Sun, 14 Feb 2010 20:31:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.openasthra.com/c-tidbits/displaying-execution-time-of-a-program/#comment-6253</guid>
		<description>what if tv_end.tv_usec &lt; tv_start.tv_usec ?! not yet bullet-proof!

cheers!
lini</description>
		<content:encoded><![CDATA[<p>what if tv_end.tv_usec &lt; tv_start.tv_usec ?! not yet bullet-proof!</p>
<p>cheers!<br />
lini</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Reversing single linked list recursively by Kapil</title>
		<link>http://www.cpp-programming.net/algorithms/reversing-single-linked-list-recursively/comment-page-1/#comment-6041</link>
		<dc:creator>Kapil</dc:creator>
		<pubDate>Fri, 15 Jan 2010 18:37:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.openasthra.com/c-tidbits/reversing-single-linked-list-recursively/#comment-6041</guid>
		<description>Java solution. Does not contain pointers, but only the objects and arrays.
Works fine for any input

	private static ListNode[] reverseRecursiveInternal(ListNode node)
	{
		if(node!=null &amp;&amp; node.next!=null)
		{
			ListNode[]beginAndEnd = reverseRecursiveInternal(node.next);
			beginAndEnd[1].next = node;
			node.next = null;
			return new ListNode[]{beginAndEnd[0],node};
		}
		else
		{
			return new ListNode[]{node,node}; 
		}
	}
	
	public static ListNode reverseRecursive(ListNode node)
	{
		return reverseRecursiveInternal(node)[0];
	}</description>
		<content:encoded><![CDATA[<p>Java solution. Does not contain pointers, but only the objects and arrays.<br />
Works fine for any input</p>
<p>	private static ListNode[] reverseRecursiveInternal(ListNode node)<br />
	{<br />
		if(node!=null &amp;&amp; node.next!=null)<br />
		{<br />
			ListNode[]beginAndEnd = reverseRecursiveInternal(node.next);<br />
			beginAndEnd[1].next = node;<br />
			node.next = null;<br />
			return new ListNode[]{beginAndEnd[0],node};<br />
		}<br />
		else<br />
		{<br />
			return new ListNode[]{node,node};<br />
		}<br />
	}</p>
<p>	public static ListNode reverseRecursive(ListNode node)<br />
	{<br />
		return reverseRecursiveInternal(node)[0];<br />
	}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on gettimeofday function for windows by Omf</title>
		<link>http://www.cpp-programming.net/c-tidbits/gettimeofday-function-for-windows/comment-page-1/#comment-5984</link>
		<dc:creator>Omf</dc:creator>
		<pubDate>Mon, 04 Jan 2010 12:29:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.openasthra.com/c-tidbits/gettimeofday-function-for-windows/#comment-5984</guid>
		<description>Very, very useful.</description>
		<content:encoded><![CDATA[<p>Very, very useful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Pelt: Posix Wrapper for Windows Threads by Pharmd93</title>
		<link>http://www.cpp-programming.net/opensource/pelt-posix-wrapper-for-windows-threads/comment-page-1/#comment-5951</link>
		<dc:creator>Pharmd93</dc:creator>
		<pubDate>Tue, 29 Dec 2009 14:53:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.openasthra.com/opensource/pelt-posix-wrapper-for-windows-threads/#comment-5951</guid>
		<description>Very nice site!</description>
		<content:encoded><![CDATA[<p>Very nice site!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Constant and Volatile by Molly Farrell</title>
		<link>http://www.cpp-programming.net/cc-programming-concepts/constant-volatile/comment-page-1/#comment-5895</link>
		<dc:creator>Molly Farrell</dc:creator>
		<pubDate>Thu, 10 Dec 2009 19:20:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.openasthra.com/types-declarations-expressions/constant-volatile/#comment-5895</guid>
		<description>Thanks for the useful article - I had fun reading it! I always enjoy this blog. :)</description>
		<content:encoded><![CDATA[<p>Thanks for the useful article &#8211; I had fun reading it! I always enjoy this blog. <img src='http://www.cpp-programming.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Incompatibilities Between ISO C and ISO C++ by Posts about Programming from google blogs as of December 8, 2009 &#171; tryfly.com</title>
		<link>http://www.cpp-programming.net/cc-programming-concepts/incompatibilities-between-iso-c-and-iso-c/comment-page-1/#comment-5893</link>
		<dc:creator>Posts about Programming from google blogs as of December 8, 2009 &#171; tryfly.com</dc:creator>
		<pubDate>Tue, 08 Dec 2009 23:45:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.cpp-programming.net/?p=611#comment-5893</guid>
		<description>[...]  [...]</description>
		<content:encoded><![CDATA[<p>[...]  [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on C++ Basics Tutorial &#8211; Lesson 1 by shower trays</title>
		<link>http://www.cpp-programming.net/tutorials/c-basics-tutorial-lesson-1/comment-page-1/#comment-5891</link>
		<dc:creator>shower trays</dc:creator>
		<pubDate>Mon, 07 Dec 2009 02:20:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.openasthra.com/tutorials/c-basics-tutorial-lesson-1/#comment-5891</guid>
		<description>Loved the review you have written here. Is there anything else to say on this subject?</description>
		<content:encoded><![CDATA[<p>Loved the review you have written here. Is there anything else to say on this subject?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Posix Directory Browsing API for Windows by Webplore</title>
		<link>http://www.cpp-programming.net/opensource/posix-directory-browsing-api-for-windows/comment-page-1/#comment-5874</link>
		<dc:creator>Webplore</dc:creator>
		<pubDate>Thu, 26 Nov 2009 12:04:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.openasthra.com/opensource/posix-directory-browsing-api-for-windows/#comment-5874</guid>
		<description>Your post is helpful and informative.</description>
		<content:encoded><![CDATA[<p>Your post is helpful and informative.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
