<?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 | Sowmiya S | Activity</title>
	<link>https://developerpublish.com/academy/members/sowmiya-s/activity/</link>
	<atom:link href="https://developerpublish.com/academy/members/sowmiya-s/activity/feed/" rel="self" type="application/rss+xml" />
	<description>Activity feed for Sowmiya S.</description>
	<lastBuildDate>Tue, 21 Apr 2026 16:57:44 +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">97e0e56f41512f211815d5c1fa12b8cc</guid>
				<title>Sowmiya S started the topic pointers in c in the forum C Programming</title>
				<link>https://developerpublish.com/academy/forums/topic/pointers-in-c-6/</link>
				<pubDate>Tue, 20 Jun 2023 07:04:30 +0000</pubDate>

									<content:encoded><![CDATA[<p>A pointer is a variable that stores the address of another variable. Unlike other variables that hold values of a certain type, pointer holds the address of a variable</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">1c7c3fd6132d54b2ddc577f59c5d41c8</guid>
				<title>Sowmiya S started the topic arrays function in c in the forum C Programming</title>
				<link>https://developerpublish.com/academy/forums/topic/arrays-function-in-c/</link>
				<pubDate>Tue, 20 Jun 2023 07:00:54 +0000</pubDate>

									<content:encoded><![CDATA[<p>Array in C can be defined as a method of clubbing multiple entities of similar type into a larger group. These entities or elements can be of int, float, char, or double data type or can be of user-defined data types too like structures.</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">88878a4a358f8c2e7e33080af784ce87</guid>
				<title>Sowmiya S started the topic while loop in c in the forum C Programming</title>
				<link>https://developerpublish.com/academy/forums/topic/while-loop-in-c-4/</link>
				<pubDate>Tue, 20 Jun 2023 06:58:26 +0000</pubDate>

									<content:encoded><![CDATA[<p>The while loop in C is used to evaluate a test condition and iterate over the loop body until the condition returns True. The loop ends when the condition returns False. This loop is also known as a pre-tested loop because it is commonly used when the number of iterations is unknown to the user ahead of time</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">314b5669b7c14f54a0084f8680537ac0</guid>
				<title>Sowmiya S started the topic Nested switch statement in c in the forum C Programming</title>
				<link>https://developerpublish.com/academy/forums/topic/nested-switch-statement-in-c-3/</link>
				<pubDate>Tue, 20 Jun 2023 06:55:56 +0000</pubDate>

									<content:encoded><![CDATA[<p>In C++, we can use a nested switch statement, where a switch statement is placed inside another switch statement. If the case constants of both the inner and outer switch statements have the same value, there will be no issues with the code</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">1f813f0a06917070731c1356ece5fffb</guid>
				<title>Sowmiya S started the topic conditional operator in c in the forum C Programming</title>
				<link>https://developerpublish.com/academy/forums/topic/conditional-operator-in-c-4/</link>
				<pubDate>Tue, 20 Jun 2023 06:53:27 +0000</pubDate>

									<content:encoded><![CDATA[<p>The conditional operator is a single programming statement and can only perform one operation. The if-else statement is a block statement, you can group multiple statements using a parenthesis. The conditional operator can return a value and so can be used for performing assignment operations.</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">dee83c426455c02085da2dcbcc9bdbdb</guid>
				<title>Sowmiya S started the topic if else statement in c in the forum C Programming</title>
				<link>https://developerpublish.com/academy/forums/topic/if-else-statement-in-c-5/</link>
				<pubDate>Tue, 20 Jun 2023 06:51:04 +0000</pubDate>

									<content:encoded><![CDATA[<p>In C programming language, if-else statement is used to perform the operations based on some specific condition. If the given condition is true, then the code inside the if block is executed, otherwise else block code is executed. It specifies an order in which the statements are to be executed.</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">c196676096688de6d40be102a0708977</guid>
				<title>Sowmiya S started the topic operators in c in the forum C Programming</title>
				<link>https://developerpublish.com/academy/forums/topic/operators-in-c-7/</link>
				<pubDate>Tue, 20 Jun 2023 06:47:54 +0000</pubDate>

									<content:encoded><![CDATA[<p>C programming has basically two operators which can increment ++ and decrement &#8212; the value of a variable. It can change the value of an operand (constant or variable) by 1. Increment and Decrement Operators are very useful operators that are generally used to minimize the calculation</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">d9863e7e1d845fad60df8dfe3870ce44</guid>
				<title>Sowmiya S started the topic c programming input and output in the forum C Programming</title>
				<link>https://developerpublish.com/academy/forums/topic/c-programming-input-and-output/</link>
				<pubDate>Tue, 20 Jun 2023 06:44:38 +0000</pubDate>

									<content:encoded><![CDATA[<p>In every C program, three basic functions take place – accepting of data as input, the processing of data, and the generation of output. The acceptance of data refers to input and the presentation of data refers to the output. The C program accepts input from the keyboard and displays output on the screen.</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">11ab866165b908e88b77132368284726</guid>
				<title>Sowmiya S started the topic what are the token in c？ in the forum C Programming</title>
				<link>https://developerpublish.com/academy/forums/topic/what-are-the-token-in-c%ef%bc%9f/</link>
				<pubDate>Tue, 20 Jun 2023 06:38:49 +0000</pubDate>

									<content:encoded><![CDATA[<p>A token is the smallest unit used in a C program. Each and every punctuation and word that you come across in a C program is token. A compiler breaks a C program into tokens and then proceeds ahead to the next stages used in the compilation process.</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">9de99f433c2dfdbb8ea6b92cddf4647a</guid>
				<title>Sowmiya S started the topic Mention the features of C Programming Language. in the forum C Programming</title>
				<link>https://developerpublish.com/academy/forums/topic/mention-the-features-of-c-programming-language/</link>
				<pubDate>Sun, 04 Jun 2023 02:17:41 +0000</pubDate>

									<content:encoded><![CDATA[<p><a href="http://Mention the features of" rel="nofollow ugc">C programming language</a></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">f6226834ca5daccce0e7ecd96c88fb64</guid>
				<title>Sowmiya S started the topic Differentiate between calloc() and malloc() in the forum C Programming</title>
				<link>https://developerpublish.com/academy/forums/topic/differentiate-between-calloc-and-malloc/</link>
				<pubDate>Sun, 04 Jun 2023 02:15:31 +0000</pubDate>

									<content:encoded><![CDATA[<p><a href="http://Differentiate between" rel="nofollow ugc">Calloc() and malloc()</a></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">16cb3b34ede8ae241e774c1e882a6152</guid>
				<title>Sowmiya S started the topic What are classes and objects in C++? in the forum C++</title>
				<link>https://developerpublish.com/academy/forums/topic/what-are-classes-and-objects-in-c/</link>
				<pubDate>Sun, 04 Jun 2023 02:10:05 +0000</pubDate>

									<content:encoded><![CDATA[<p><a href="http://What are classes and" rel="nofollow ugc">Objects in c++?</a></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">cf0a5df7c21d77137e8b32df60442c5a</guid>
				<title>Sowmiya S started the topic What are macros in Excel? in the forum C++</title>
				<link>https://developerpublish.com/academy/forums/topic/what-are-macros-in-excel/</link>
				<pubDate>Sun, 04 Jun 2023 01:57:22 +0000</pubDate>

									<content:encoded><![CDATA[<p><a href="http://What are" rel="nofollow ugc">Macros in excel</a></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">051d7a2318a592f0b8421033b861de7f</guid>
				<title>Sowmiya S started the topic How are nested IF statements used in Excel? in the forum C++</title>
				<link>https://developerpublish.com/academy/forums/topic/how-are-nested-if-statements-used-in-excel/</link>
				<pubDate>Sun, 04 Jun 2023 01:54:06 +0000</pubDate>

									<content:encoded><![CDATA[<p><a href="http://How are nested" rel="nofollow ugc">If statements used in excel</a></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">47b297aad923df339c8ca7a7249130b6</guid>
				<title>Sowmiya S started the topic What is the difference between count, counta, and countblank? in the forum C++</title>
				<link>https://developerpublish.com/academy/forums/topic/what-is-the-difference-between-count-counta-and-countblank/</link>
				<pubDate>Sun, 04 Jun 2023 01:48:59 +0000</pubDate>

									<content:encoded><![CDATA[<p><a href="http://What is the difference between" rel="nofollow ugc">Count, counta and countblank?</a></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">cc164354fb15236dbe665f1d49593784</guid>
				<title>Sowmiya S started the topic What is the difference between Python Arrays and lists? in the forum C++</title>
				<link>https://developerpublish.com/academy/forums/topic/what-is-the-difference-between-python-arrays-and-lists/</link>
				<pubDate>Sun, 04 Jun 2023 01:44:21 +0000</pubDate>

									<content:encoded><![CDATA[<p><a href="http://What is the difference between" rel="nofollow ugc">Python arrays and lists?</a></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">71abc0a68d9fc29bbb40b0d7919397d9</guid>
				<title>Sowmiya S started the topic What are local variables and global variables in Python? in the forum C++</title>
				<link>https://developerpublish.com/academy/forums/topic/what-are-local-variables-and-global-variables-in-python/</link>
				<pubDate>Sun, 04 Jun 2023 01:41:16 +0000</pubDate>

									<content:encoded><![CDATA[<p><a href="http://What are the local variable and" rel="nofollow ugc">Global variable in python</a></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">00e31282c56f6b9ac5926c08265e8b38</guid>
				<title>Sowmiya S started the topic What are the register variables? What are the advantages in the forum C++</title>
				<link>https://developerpublish.com/academy/forums/topic/what-are-the-register-variables-what-are-the-advantages/</link>
				<pubDate>Sat, 03 Jun 2023 02:14:23 +0000</pubDate>

									<content:encoded><![CDATA[<p><a href="http://What are register variables?" rel="nofollow ugc">What are the advantages</a></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">ce026c2299ea3575acce9555a4c034a8</guid>
				<title>Sowmiya S started the topic How can we merge multiple cells text strings in a cell? in the forum C++</title>
				<link>https://developerpublish.com/academy/forums/topic/how-can-we-merge-multiple-cells-text-strings-in-a-cell/</link>
				<pubDate>Sat, 03 Jun 2023 02:01:44 +0000</pubDate>

									<content:encoded><![CDATA[<p><a href="http://How can we merge multiple cells" rel="nofollow ugc">Text string in a cell</a></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">889996c8eb36239a564c5c46458ae734</guid>
				<title>Sowmiya S started the topic Mention the order of operations used in Excel while evaluating formulas. in the forum C++</title>
				<link>https://developerpublish.com/academy/forums/topic/mention-the-order-of-operations-used-in-excel-while-evaluating-formulas/</link>
				<pubDate>Sat, 03 Jun 2023 01:58:33 +0000</pubDate>

									<content:encoded><![CDATA[<p><a href="http://Mention the order of operations used in" rel="nofollow ugc">Excel while evaluavating formulas</a></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">2d21473826847a8caa32bc7e7f6bde70</guid>
				<title>Sowmiya S started the topic What are static variables and functions? in the forum C++</title>
				<link>https://developerpublish.com/academy/forums/topic/what-are-static-variables-and-functions/</link>
				<pubDate>Fri, 02 Jun 2023 12:34:58 +0000</pubDate>

									<content:encoded><![CDATA[<p><a href="http://What are the static" rel="nofollow ugc">Variables and functions</a></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">3e89f7ee846fa8b76c339526f6285b3a</guid>
				<title>Sowmiya S started the topic What are the common built-in data types in Python? in the forum C++</title>
				<link>https://developerpublish.com/academy/forums/topic/what-are-the-common-built-in-data-types-in-python/</link>
				<pubDate>Fri, 02 Jun 2023 12:07:22 +0000</pubDate>

									<content:encoded><![CDATA[<p><a href="http://What are the common built in" rel="nofollow ugc">data types in python</a></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">03f4cffba8cd2d0a82aca436b5a62a51</guid>
				<title>Sowmiya S started the topic What is Scope in Python? in the forum C++</title>
				<link>https://developerpublish.com/academy/forums/topic/what-is-scope-in-python/</link>
				<pubDate>Fri, 02 Jun 2023 12:04:37 +0000</pubDate>

									<content:encoded><![CDATA[<p><a href="http://What is" rel="nofollow ugc">Scope in python</a></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">7f81698c373f404b9f4d2905bd4d9d06</guid>
				<title>Sowmiya S started the topic What is the cell address in excel in the forum Microsoft Excel</title>
				<link>https://developerpublish.com/academy/forums/topic/what-is-the-cell-address-in-excel/</link>
				<pubDate>Thu, 25 May 2023 09:38:45 +0000</pubDate>

									<content:encoded><![CDATA[<p>A cell reference,also renowned as a cell address, is a scalar quantity that is used in a worksheet to identify a single cell. Each cell reference starts with a letter and comes to an end with a number</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">b564236668761eb95fa8abd0e65d871c</guid>
				<title>Sowmiya S started the topic What is the variable and constants? in the forum C Programming</title>
				<link>https://developerpublish.com/academy/forums/topic/what-is-the-variable-and-constants/</link>
				<pubDate>Thu, 25 May 2023 09:28:57 +0000</pubDate>

									<content:encoded><![CDATA[<p>#include&lt;stdio.h&gt;<br />
int main( ) {<br />
/* variable definition*/<br />
     int x,y;<br />
     int z;<br />
     float a;<br />
     /*initialization */<br />
     x = 7;<br />
      y = 4;<br />
      z = x+y;<br />
      Printf(&#8220;value of a : %a n&#8221;,a);<br />
      return 0;<br />
}</p>
]]></content:encoded>
				
				
							</item>
		
	</channel>
</rss>