<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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>DeveloperPublish | Harini | Activity</title>
	<link>https://developerpublish.com/academy/members/harini/activity/</link>
	<atom:link href="https://developerpublish.com/academy/members/harini/activity/feed/" rel="self" type="application/rss+xml" />
	<description>Activity feed for Harini.</description>
	<lastBuildDate>Fri, 17 Apr 2026 17:40:33 +0000</lastBuildDate>
	<generator>https://buddypress.org/?v=12.0.0</generator>
	<language>en-US</language>
	<ttl>30</ttl>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>2</sy:updateFrequency>
	
						<item>
				<guid isPermaLink="false">7bfb7b8ea87cc29d7212a45f7bf7e653</guid>
				<title>Harini replied to the topic Pointers of c programming in the forum C Programming</title>
				<link>https://developerpublish.com/academy/forums/topic/pointers-of-c-programming/#post-23418</link>
				<pubDate>Sun, 28 May 2023 15:14:55 +0000</pubDate>

									<content:encoded><![CDATA[<p>#include &lt;stdio.h&gt;</p>
<p>int main(void) {<br />
  char name[] = &#8220;Harry Potter&#8221;;</p>
<p>  printf(&#8220;%c&#8221;, *name);     // Output: H<br />
  printf(&#8220;%c&#8221;, *(name+1));   // Output: a<br />
  printf(&#8220;%c&#8221;, *(name+7));   // Output: o</p>
<p>  char *namePtr;</p>
<p>  namePtr = name;<br />
  printf(&#8220;%c&#8221;, *namePtr);     // Output: H<br />
  printf(&#8220;%c&#8221;, *(namePtr+1));   // Output: a<br />
  printf(&#8220;%c&#8221;, *(namePtr+7));&hellip;<span class="activity-read-more" id="activity-read-more-2319"><a href="https://developerpublish.com/academy/forums/topic/pointers-of-c-programming/#post-23418" rel="nofollow ugc">[Read more]</a></span></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">1252862b288b320c65d0da0c24affb48</guid>
				<title>Harini replied to the topic Pointers of c programming in the forum C Programming</title>
				<link>https://developerpublish.com/academy/forums/topic/pointers-of-c-programming/#post-23417</link>
				<pubDate>Sun, 28 May 2023 15:05:08 +0000</pubDate>

									<content:encoded><![CDATA[<p>#include &lt;stdio.h&gt;<br />
int main()<br />
{<br />
   int* pc, c;</p>
<p>   c = 22;<br />
   printf(&#8220;Address of c: %pn&#8221;, &amp;c);<br />
   printf(&#8220;Value of c: %dnn&#8221;, c);  // 22</p>
<p>   pc = &amp;c;<br />
   printf(&#8220;Address of pointer pc: %pn&#8221;, pc);<br />
   printf(&#8220;Content of pointer pc: %dnn&#8221;, *pc); // 22</p>
<p>   c = 11;<br />
   printf(&#8220;Address of pointer pc: %pn&#8221;, pc);<br />
   printf(&#8220;Content of pointer pc:&hellip;<span class="activity-read-more" id="activity-read-more-2318"><a href="https://developerpublish.com/academy/forums/topic/pointers-of-c-programming/#post-23417" rel="nofollow ugc">[Read more]</a></span></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">94bddfc21597713329f87a099458a20e</guid>
				<title>Harini started the topic Pointers of c programming in the forum C Programming</title>
				<link>https://developerpublish.com/academy/forums/topic/pointers-of-c-programming/</link>
				<pubDate>Sun, 28 May 2023 15:03:29 +0000</pubDate>

									<content:encoded><![CDATA[<p>#include &lt;stdio.h&gt;<br />
int main()<br />
{<br />
   int* pc, c;</p>
<p>   c = 22;<br />
   printf(&#8220;Address of c: %pn&#8221;, &amp;c);<br />
   printf(&#8220;Value of c: %dnn&#8221;, c);  // 22</p>
<p>   pc = &amp;c;<br />
   printf(&#8220;Address of pointer pc: %pn&#8221;, pc);<br />
   printf(&#8220;Content of pointer pc: %dnn&#8221;, *pc); // 22</p>
<p>   c = 11;<br />
   printf(&#8220;Address of pointer pc: %pn&#8221;, pc);<br />
   printf(&#8220;Content of pointer pc:&hellip;<span class="activity-read-more" id="activity-read-more-2317"><a href="https://developerpublish.com/academy/forums/topic/pointers-of-c-programming/" rel="nofollow ugc">[Read more]</a></span></p>
]]></content:encoded>
				
				
							</item>
		
	</channel>
</rss>