<?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 | Nasreen chithara M | Activity</title>
	<link>https://developerpublish.com/academy/members/nasreen-chithara-m/activity/</link>
	<atom:link href="https://developerpublish.com/academy/members/nasreen-chithara-m/activity/feed/" rel="self" type="application/rss+xml" />
	<description>Activity feed for Nasreen chithara M.</description>
	<lastBuildDate>Sun, 19 Apr 2026 09:38:26 +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">2768de84ba2c880197b2ac0cd0371b94</guid>
				<title>Nasreen chithara M started the topic Default argument in c++ in the forum C++</title>
				<link>https://developerpublish.com/academy/forums/topic/default-argument-in-c/</link>
				<pubDate>Tue, 30 May 2023 05:58:38 +0000</pubDate>

									<content:encoded><![CDATA[<p>A default argument is a value provided in a function declaration<br />
int sum(int x, int y, int z = 0, int w = 0)<br />
{<br />
    return (x + y + z + w);<br />
}</p>
<p>int main()<br />
{<br />
    cout &lt;&lt; sum(10, 15) &lt;&lt; endl;</p>
<p>    cout &lt;&lt; sum(10, 15, 25) &lt;&lt; endl;</p>
<p>    cout &lt;&lt; sum(10, 15, 25, 30) &lt;&lt; endl;<br />
    return 0;<br />
}</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">bec2c4d27f9683230f70f8b6c7db9093</guid>
				<title>Nasreen chithara M started the topic Program for#c++ Pointers in c++ in the forum C++</title>
				<link>https://developerpublish.com/academy/forums/topic/program-forc-pointers-in-c/</link>
				<pubDate>Tue, 30 May 2023 05:54:05 +0000</pubDate>

									<content:encoded><![CDATA[<p>#include &lt;iostream&gt;<br />
using namespace std;<br />
int main()<br />
{<br />
int number=30;<br />
int ∗   p;<br />
p=&amp;number;//stores the address of number variable<br />
cout&lt;&lt;&#8220;Address of number variable is:&#8221;&lt;&lt;&amp;number&lt;&lt;endl;<br />
cout&lt;&lt;&#8220;Address of p variable is:&#8221;&lt;&lt;p&lt;&lt;endl;<br />
cout&lt;&lt;&#8220;Value of p variable is:&#8221;&lt;&lt;*p&lt;&lt;endl;<br />
   return 0;&hellip;</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">3cb343f4f43dc3e900918f932df69e3c</guid>
				<title>Nasreen chithara M started the topic Factorial of a num using recursion in c++ in the forum C++</title>
				<link>https://developerpublish.com/academy/forums/topic/factorial-of-a-num-using-recursion-in-c/</link>
				<pubDate>Tue, 30 May 2023 05:44:24 +0000</pubDate>

									<content:encoded><![CDATA[<p>def recur_factorial(n):<br />
   if n == 1:<br />
       return n<br />
   else:<br />
       return n*recur_factorial(n-1)</p>
<p>num = 7<br />
if num &lt; 0:<br />
   print(&#8220;Sorry, factorial does not exist for negative numbers&#8221;)<br />
elif num == 0:<br />
   print(&#8220;The factorial of 0 is 1&#8221;)<br />
else:<br />
   print(&#8220;The factorial of&#8221;, num, &#8220;is&#8221;, recur_factorial(num))</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">24cd5fbf9452720ff4cf3b85b335f97d</guid>
				<title>Nasreen chithara M started the topic File operations in c programming in the forum C Programming</title>
				<link>https://developerpublish.com/academy/forums/topic/file-operations-in-c-programming/</link>
				<pubDate>Fri, 26 May 2023 05:05:33 +0000</pubDate>

									<content:encoded><![CDATA[<p>#include&lt;stdio.h&gt;<br />
void main()<br />
{<br />
FILE*fptr;<br />
char name[20];<br />
int age;<br />
float salary;<br />
fptr=fopen(&#8220;emp.txt&#8221;,&#8221;w&#8221;);<br />
if(fptr==NULL)<br />
{<br />
printf(&#8220;File does not existsn&#8221;);<br />
return;<br />
}<br />
printf(&#8220;Enter the namen&#8221;);<br />
scanf(&#8220;%s&#8221;,name);<br />
fprintf(fptr,&#8221;Name=%sn&#8221;,name);<br />
printf(&#8220;Enter the agen&#8221;);<br />
scanf(&#8220;%d&#8221;,&amp;age);<br />
fprintf(fptr,&#8221;Age=%dn&#8221;,age);<br />
printf(&#8220;Enter the&hellip;<span class="activity-read-more" id="activity-read-more-2044"><a href="https://developerpublish.com/academy/forums/topic/file-operations-in-c-programming/" rel="nofollow ugc">[Read more]</a></span></p>
]]></content:encoded>
				
				
							</item>
		
	</channel>
</rss>