<?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 My TechnoDepth</title>
	<atom:link href="http://technodepth.com/mytd/?feed=comments-rss2" rel="self" type="application/rss+xml" />
	<link>http://technodepth.com/mytd</link>
	<description>Just Share What you think differently</description>
	<lastBuildDate>Tue, 15 May 2012 09:54:34 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>Comment on WordPress Depth by Tabish</title>
		<link>http://technodepth.com/mytd/?page_id=48#comment-31</link>
		<dc:creator>Tabish</dc:creator>
		<pubDate>Tue, 15 May 2012 09:54:34 +0000</pubDate>
		<guid isPermaLink="false">http://technodepth.com/mytd/?page_id=48#comment-31</guid>
		<description>&lt;strong&gt;Blog Address and Site Address&lt;/strong&gt;

in wp-config.php file add these lines

A cool trick is to set these values dynamically by using the global server variable:
&lt;strong&gt;
define(&#039;WP_HOME&#039;, &#039;http://&#039;.$_SERVER[&#039;HTTP_HOST&#039;].&#039;/path/to/wordpress&#039;);
define(&#039;WP_SITEURL&#039;, &#039;http://&#039;.$_SERVER[&#039;HTTP_HOST&#039;].&#039;/path/to/wordpress&#039;);&lt;/strong&gt;</description>
		<content:encoded><![CDATA[<p><strong>Blog Address and Site Address</strong></p>
<p>in wp-config.php file add these lines</p>
<p>A cool trick is to set these values dynamically by using the global server variable:<br />
<strong><br />
define(&#8216;WP_HOME&#8217;, &#8216;<a href="http://&#039;.$_SERVER&#039;HTTP_HOST&#039;.&#039;/path/to/wordpress" rel="nofollow">http://&#039;.$_SERVER&#039;HTTP_HOST&#039;.&#039;/path/to/wordpress</a>&#8216;);<br />
define(&#8216;WP_SITEURL&#8217;, &#8216;<a href="http://&#039;.$_SERVER&#039;HTTP_HOST&#039;.&#039;/path/to/wordpress" rel="nofollow">http://&#039;.$_SERVER&#039;HTTP_HOST&#039;.&#039;/path/to/wordpress</a>&#8216;);</strong></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on C &amp; C++ Depth by Tabish</title>
		<link>http://technodepth.com/mytd/?page_id=2#comment-30</link>
		<dc:creator>Tabish</dc:creator>
		<pubDate>Wed, 09 May 2012 13:36:04 +0000</pubDate>
		<guid isPermaLink="false">http://technodepth.com/mytd/?page_id=2#comment-30</guid>
		<description>&lt;strong&gt;Q: Where are global, local, static, extern, variables stored ?&lt;/strong&gt;

&lt;strong&gt;A:&lt;/strong&gt;

&lt;strong&gt;Local&lt;/strong&gt; Variables are Stored in &lt;strong&gt;Stack&lt;/strong&gt;

&lt;strong&gt;Register&lt;/strong&gt; variables are stored in &lt;strong&gt;Register&lt;/strong&gt;

Global, &lt;strong&gt;Externs &lt;/strong&gt;and &lt;strong&gt;Static &lt;/strong&gt;variables are stored in &lt;strong&gt;Data segment&lt;/strong&gt;</description>
		<content:encoded><![CDATA[<p><strong>Q: Where are global, local, static, extern, variables stored ?</strong></p>
<p><strong>A:</strong></p>
<p><strong>Local</strong> Variables are Stored in <strong>Stack</strong></p>
<p><strong>Register</strong> variables are stored in <strong>Register</strong></p>
<p>Global, <strong>Externs </strong>and <strong>Static </strong>variables are stored in <strong>Data segment</strong></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on C &amp; C++ Depth by Tabish</title>
		<link>http://technodepth.com/mytd/?page_id=2#comment-28</link>
		<dc:creator>Tabish</dc:creator>
		<pubDate>Wed, 09 May 2012 13:21:40 +0000</pubDate>
		<guid isPermaLink="false">http://technodepth.com/mytd/?page_id=2#comment-28</guid>
		<description>
&lt;strong&gt;Hello World in C&lt;/strong&gt;


#include &lt;stdio.h&gt;       &lt;em&gt;// header File of C&lt;/em&gt;
 
void main()        &lt;em&gt;//Main Function Declaration&lt;/em&gt;
{                        &lt;em&gt;// Opening Main Scope&lt;/em&gt;
printf (&quot;Hello World!\n&quot;);      &lt;em&gt;// Printing the message Hello World&lt;/em&gt;
}                           &lt;em&gt;// Closing Scope of main Function&lt;/em&gt;

&lt;strong&gt;Hello World in C++&lt;/strong&gt;

#include &lt;iostream.h&gt;  &lt;em&gt;// header File of C++&lt;/em&gt;

int main ()       &lt;em&gt;//Main Function Declaration with In&lt;em&gt;teger value return Type&lt;/em&gt;
{               &lt;/em&gt; // Opening Main Scope
  cout &lt;&lt; &quot;Hello World!&quot;;       &lt;em&gt;// Printing the message Hello World&lt;/em&gt;
  return 0;           &lt;em&gt;// Return 0 value. it is not returning any data&lt;/em&gt;
}           &lt;em&gt; // Closing Scope of main Function&lt;/em&gt;</description>
		<content:encoded><![CDATA[<p><strong>Hello World in C</strong></p>
<p>#include <stdio .h>       <em>// header File of C</em></p>
<p>void main()        <em>//Main Function Declaration</em><br />
{                        <em>// Opening Main Scope</em><br />
printf (&#8220;Hello World!\n&#8221;);      <em>// Printing the message Hello World</em><br />
}                           <em>// Closing Scope of main Function</em></p>
<p><strong>Hello World in C++</strong></p>
<p>#include <iostream .h>  <em>// header File of C++</em></p>
<p>int main ()       <em>//Main Function Declaration with In</em><em>teger value return Type</em><br />
{                // Opening Main Scope<br />
  cout < < "Hello World!";       <em>// Printing the message Hello World<br />
  return 0;           <em>// Return 0 value. it is not returning any data</em><br />
}           <em> // Closing Scope of main Function</em></iostream></stdio></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress Depth by Maria Moura</title>
		<link>http://technodepth.com/mytd/?page_id=48#comment-27</link>
		<dc:creator>Maria Moura</dc:creator>
		<pubDate>Fri, 04 May 2012 22:44:42 +0000</pubDate>
		<guid isPermaLink="false">http://technodepth.com/mytd/?page_id=48#comment-27</guid>
		<description>an interesting article indeed! of course, with lots of things to reflect upon.http://www.kitsucesso.com</description>
		<content:encoded><![CDATA[<p>an interesting article indeed! of course, with lots of things to reflect upon.<a href="http://www.kitsucesso.com" rel="nofollow">http://www.kitsucesso.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dennis Ritchie- Father of C And Unix by Eliana</title>
		<link>http://technodepth.com/mytd/?p=29#comment-26</link>
		<dc:creator>Eliana</dc:creator>
		<pubDate>Fri, 04 May 2012 06:26:56 +0000</pubDate>
		<guid isPermaLink="false">http://technodepth.com/mytd/?p=29#comment-26</guid>
		<description>i became a regular follower of your blog. thanks for all the good info.http://www.kitsucesso.com</description>
		<content:encoded><![CDATA[<p>i became a regular follower of your blog. thanks for all the good info.<a href="http://www.kitsucesso.com" rel="nofollow">http://www.kitsucesso.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Snow fall on Google Home Page by Aliana</title>
		<link>http://technodepth.com/mytd/?p=54#comment-25</link>
		<dc:creator>Aliana</dc:creator>
		<pubDate>Mon, 30 Apr 2012 19:29:39 +0000</pubDate>
		<guid isPermaLink="false">http://technodepth.com/mytd/?p=54#comment-25</guid>
		<description>thank you for all the help.http://www.listadeemail.org</description>
		<content:encoded><![CDATA[<p>thank you for all the help.<a href="http://www.listadeemail.org" rel="nofollow">http://www.listadeemail.org</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MySql Depth by Aldalgisa</title>
		<link>http://technodepth.com/mytd/?page_id=16#comment-24</link>
		<dc:creator>Aldalgisa</dc:creator>
		<pubDate>Mon, 23 Apr 2012 15:25:44 +0000</pubDate>
		<guid isPermaLink="false">http://technodepth.com/mytd/?page_id=16#comment-24</guid>
		<description>amazing work.http://www.musicapaulafernandes.net</description>
		<content:encoded><![CDATA[<p>amazing work.<a href="http://www.musicapaulafernandes.net" rel="nofollow">http://www.musicapaulafernandes.net</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Will APPLE survive after steave Jobs??? by Mudassir</title>
		<link>http://technodepth.com/mytd/?p=9#comment-22</link>
		<dc:creator>Mudassir</dc:creator>
		<pubDate>Wed, 18 Apr 2012 17:12:03 +0000</pubDate>
		<guid isPermaLink="false">http://technodepth.com/mytd/?p=9#comment-22</guid>
		<description>I wish Apple goes into continous loss making  and ends up being bought by Technodepth.</description>
		<content:encoded><![CDATA[<p>I wish Apple goes into continous loss making  and ends up being bought by Technodepth.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Snow fall on Google Home Page by Dilce</title>
		<link>http://technodepth.com/mytd/?p=54#comment-21</link>
		<dc:creator>Dilce</dc:creator>
		<pubDate>Wed, 28 Mar 2012 12:05:21 +0000</pubDate>
		<guid isPermaLink="false">http://technodepth.com/mytd/?p=54#comment-21</guid>
		<description>thanks this has really helped, as has many of your other articles.http://www.agenciadempregos.com</description>
		<content:encoded><![CDATA[<p>thanks this has really helped, as has many of your other articles.<a href="http://www.agenciadempregos.com" rel="nofollow">http://www.agenciadempregos.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Will APPLE survive after steave Jobs??? by Dagmar</title>
		<link>http://technodepth.com/mytd/?p=9#comment-20</link>
		<dc:creator>Dagmar</dc:creator>
		<pubDate>Thu, 15 Mar 2012 14:23:05 +0000</pubDate>
		<guid isPermaLink="false">http://technodepth.com/mytd/?p=9#comment-20</guid>
		<description>post has been excellent and i have referred it to many of my friends. my honour for the work that you have done. thank you once again.http://www.nascimentoturismo.net</description>
		<content:encoded><![CDATA[<p>post has been excellent and i have referred it to many of my friends. my honour for the work that you have done. thank you once again.<a href="http://www.nascimentoturismo.net" rel="nofollow">http://www.nascimentoturismo.net</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

