<?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 | asiyashifa | Activity</title>
	<link>https://developerpublish.com/academy/members/asiyashifa/activity/</link>
	<atom:link href="https://developerpublish.com/academy/members/asiyashifa/activity/feed/" rel="self" type="application/rss+xml" />
	<description>Activity feed for asiyashifa.</description>
	<lastBuildDate>Fri, 10 Apr 2026 16:19:29 +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">b7fc150f1e31e2529e513679369b9080</guid>
				<title>asiyashifa started the topic To check leap year in the forum Microsoft Word</title>
				<link>https://developerpublish.com/academy/forums/topic/to-check-leap-year/</link>
				<pubDate>Tue, 30 May 2023 12:50:00 +0000</pubDate>

									<content:encoded><![CDATA[<p>#include &lt;iostream&gt;<br />
using namespace std;</p>
<p>int main() {</p>
<p>  int year;<br />
  cout &lt;&lt; &#8220;Enter a year: &#8220;;<br />
  cin &gt;&gt; year;</p>
<p>  // leap year if perfectly divisible by 400<br />
  if (year % 400 == 0) {<br />
    cout &lt;&lt; year &lt;&lt; &#8221; is a leap year.&#8221;;<br />
  }<br />
  // not a leap year if divisible by 100<br />
  // but not divisible by 400<br />
  else if (year % 100 == 0) {<br />
    cout &lt;&lt; year &lt;&lt; &#8220;&hellip;<span class="activity-read-more" id="activity-read-more-2423"><a href="https://developerpublish.com/academy/forums/topic/to-check-leap-year/" rel="nofollow ugc">[Read more]</a></span></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">daea7b992a4cf152ccbc5b89502c1cc5</guid>
				<title>asiyashifa started the topic Check whether the number is odd or even in the forum Microsoft Word</title>
				<link>https://developerpublish.com/academy/forums/topic/check-whether-the-number-is-odd-or-even/</link>
				<pubDate>Tue, 30 May 2023 12:47:55 +0000</pubDate>

									<content:encoded><![CDATA[<p>#include &lt;iostream&gt;<br />
using namespace std;</p>
<p>int main() {<br />
  int n;</p>
<p>  cout &lt;&lt; &#8220;Enter an integer: &#8220;;<br />
  cin &gt;&gt; n;</p>
<p>  if ( n % 2 == 0)<br />
    cout &lt;&lt; n &lt;&lt; &#8221; is even.&#8221;;<br />
  else<br />
    cout &lt;&lt; n &lt;&lt; &#8221; is odd.&#8221;;</p>
<p>  return 0;<br />
}</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">e74f7e0b41b6f9a617dbbb0b77feb46f</guid>
				<title>asiyashifa started the topic Swap two numbers in the forum Microsoft Word</title>
				<link>https://developerpublish.com/academy/forums/topic/swap-two-numbers/</link>
				<pubDate>Tue, 30 May 2023 12:46:01 +0000</pubDate>

									<content:encoded><![CDATA[<p>#include &lt;iostream&gt;<br />
using namespace std;</p>
<p>int main()<br />
{<br />
    int a = 5, b = 10, temp;</p>
<p>    cout &lt;&lt; &#8220;Before swapping.&#8221; &lt;&lt; endl;<br />
    cout &lt;&lt; &#8220;a = &#8221; &lt;&lt; a &lt;&lt; &#8220;, b = &#8221; &lt;&lt; b &lt;&lt; endl;</p>
<p>    temp = a;<br />
    a = b;<br />
    b = temp;</p>
<p>    cout &lt;&lt; &#8220;nAfter swapping.&#8221; &lt;&lt; endl;<br />
    cout &lt;&lt; &#8220;a = &#8221; &lt;&lt; a &lt;&lt; &#8220;, b = &#8221; &lt;&lt; b &lt;&lt; endl;</p>
<p>    return&hellip;</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">c704a22cdf1390cae1ee1c7b2fb41c86</guid>
				<title>asiyashifa started the topic Find int, float,chart in the forum Microsoft Word</title>
				<link>https://developerpublish.com/academy/forums/topic/find-int-floatchart/</link>
				<pubDate>Tue, 30 May 2023 12:44:25 +0000</pubDate>

									<content:encoded><![CDATA[<p>#include &lt;iostream&gt;<br />
using namespace std;</p>
<p>int main()<br />
{<br />
    cout &lt;&lt; &#8220;Size of char: &#8221; &lt;&lt; sizeof(char) &lt;&lt; &#8221; byte&#8221; &lt;&lt; endl;<br />
    cout &lt;&lt; &#8220;Size of int: &#8221; &lt;&lt; sizeof(int) &lt;&lt; &#8221; bytes&#8221; &lt;&lt; endl;<br />
    cout &lt;&lt; &#8220;Size of float: &#8221; &lt;&lt; sizeof(float) &lt;&lt; &#8221; bytes&#8221; &lt;&lt; endl;<br />
    cout &lt;&lt; &#8220;Size of double: &#8221; &lt;&lt; sizeof(double) &lt;&lt; &#8221; bytes&#8221; &lt;&lt; endl;</p>
<p>    return&hellip;</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">21256c84e29865e8b15f284db3539cd7</guid>
				<title>asiyashifa started the topic Find qoutiont and remainder in the forum Microsoft Word</title>
				<link>https://developerpublish.com/academy/forums/topic/find-qoutiont-and-remainder/</link>
				<pubDate>Tue, 30 May 2023 12:42:48 +0000</pubDate>

									<content:encoded><![CDATA[<p>#include &lt;iostream&gt;<br />
using namespace std;</p>
<p>int main()<br />
{<br />
    int divisor, dividend, quotient, remainder;</p>
<p>    cout &lt;&lt; &#8220;Enter dividend: &#8220;;<br />
    cin &gt;&gt; dividend;</p>
<p>    cout &lt;&lt; &#8220;Enter divisor: &#8220;;<br />
    cin &gt;&gt; divisor;</p>
<p>    quotient = dividend / divisor;<br />
    remainder = dividend % divisor;</p>
<p>    cout &lt;&lt; &#8220;Quotient = &#8221; &lt;&lt; quotient &lt;&lt; endl;<br />
    cout &lt;&lt;&hellip;<span class="activity-read-more" id="activity-read-more-2419"><a href="https://developerpublish.com/academy/forums/topic/find-qoutiont-and-remainder/" rel="nofollow ugc">[Read more]</a></span></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">b490958d72ea72deed6bfc6b4a903388</guid>
				<title>asiyashifa started the topic Add two numbers in the forum Microsoft Word</title>
				<link>https://developerpublish.com/academy/forums/topic/add-two-numbers/</link>
				<pubDate>Tue, 30 May 2023 12:40:26 +0000</pubDate>

									<content:encoded><![CDATA[<p>include &lt;iostream&gt;<br />
using namespace std;</p>
<p>int main() {</p>
<p>  int first_number, second_number, sum;</p>
<p>  cout &lt;&lt; &#8220;Enter two integers: &#8220;;<br />
  cin &gt;&gt; first_number &gt;&gt; second_number;</p>
<p>  // sum of two numbers in stored in variable sumOfTwoNumbers<br />
  sum = first_number + second_number;</p>
<p>  // prints sum<br />
  cout &lt;&lt; first_number &lt;&lt; &#8221; + &#8221; &lt;&lt;  second_number &lt;&lt; &#8221; =&hellip;<span class="activity-read-more" id="activity-read-more-2418"><a href="https://developerpublish.com/academy/forums/topic/add-two-numbers/" rel="nofollow ugc">[Read more]</a></span></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">6ee0d3e559fac337830529185d0090dd</guid>
				<title>asiyashifa started the topic Printing a number in the forum Microsoft Word</title>
				<link>https://developerpublish.com/academy/forums/topic/printing-a-number/</link>
				<pubDate>Tue, 30 May 2023 12:39:00 +0000</pubDate>

									<content:encoded><![CDATA[<p>#include &lt;iostream&gt;<br />
using namespace std;</p>
<p>int main() {<br />
    int number;</p>
<p>    cout &lt;&lt; &#8220;Enter an integer: &#8220;;<br />
    cin &gt;&gt; number;</p>
<p>    cout &lt;&lt; &#8220;You entered &#8221; &lt;&lt; number;<br />
    return 0;<br />
}</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">b284a658288e66907d74871be4bf898f</guid>
				<title>asiyashifa started the topic coding for Hello world in the forum Microsoft Word</title>
				<link>https://developerpublish.com/academy/forums/topic/coding-for-hello-world/</link>
				<pubDate>Tue, 30 May 2023 12:36:57 +0000</pubDate>

									<content:encoded><![CDATA[<p>// Your First C++ Program</p>
<p>#include &lt;iostream&gt;</p>
<p>int main() {<br />
    std::cout &lt;&lt; &#8220;Hello World!&#8221;;<br />
    return 0;<br />
}</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">e12b5098f4197a744079335b9200e880</guid>
				<title>asiyashifa wrote a new item</title>
				<link>https://developerpublish.com/academy/?p=23795</link>
				<pubDate>Tue, 30 May 2023 12:23:21 +0000</pubDate>

									<content:encoded><![CDATA[<p>start using C++, you need two things:  A text editor, like Notepad, to write C++ code.  A compiler, like GCC, to translate the C++ code into a language that the computer will understand.</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">7e10692e8f43df49a3edb9630f684cb0</guid>
				<title>asiyashifa wrote a new item</title>
				<link>https://developerpublish.com/academy/?p=23794</link>
				<pubDate>Tue, 30 May 2023 12:20:30 +0000</pubDate>

									<content:encoded><![CDATA[<p>C++, you can exit a program in these ways:  Call the exit function.  Call the abort function.  Execute a return statement from main</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">00bcf1200ab58bd01a8a5f1ef035bfc1</guid>
				<title>asiyashifa wrote a new item</title>
				<link>https://developerpublish.com/academy/?p=23793</link>
				<pubDate>Tue, 30 May 2023 12:17:43 +0000</pubDate>

									<content:encoded><![CDATA[<p>Top C++ Features    	Simple. We expect to understand a new programming language thoroughly when we start using it. &#8230;  	Object Oriented. C++ is an Object-Oriented Programming Language (OOP). &#8230;  	Machine [&hellip;]</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">779cbbfc440c76db63accbe4910ba89b</guid>
				<title>asiyashifa wrote a new item</title>
				<link>https://developerpublish.com/academy/?p=23773</link>
				<pubDate>Tue, 30 May 2023 07:43:03 +0000</pubDate>

									<content:encoded><![CDATA[<p>Names can contain letters, digits and underscores.  	Names must begin with a letter or an underscore (_)  	Names are case sensitive ( myVar and myvar are different variables)  	Names cannot contain whitespaces [&hellip;]</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">7ff89bc784e9a8f2fe0de037b4e12921</guid>
				<title>asiyashifa wrote a new item</title>
				<link>https://developerpublish.com/academy/?p=23771</link>
				<pubDate>Tue, 30 May 2023 07:40:23 +0000</pubDate>

									<content:encoded><![CDATA[<p>Keywords are those words whose meaning is already defined by Compiler. These keywords cannot be used as an identifier. Note that keywords are the collection of reserved words and predefined identifiers.</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">58f7c2d36acac1bafc809bdde3afff01</guid>
				<title>asiyashifa wrote a new item</title>
				<link>https://developerpublish.com/academy/?p=23770</link>
				<pubDate>Tue, 30 May 2023 07:36:08 +0000</pubDate>

									<content:encoded><![CDATA[<p>C++ allows the char, int, and double data types to have modifiers preceding them. A modifier is used to alter the meaning of the base type so that it more precisely fits the needs of various situations. The [&hellip;]</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">009840d53f75ae6ee43f255e1e5412db</guid>
				<title>asiyashifa wrote a new item</title>
				<link>https://developerpublish.com/academy/?p=23768</link>
				<pubDate>Tue, 30 May 2023 07:32:53 +0000</pubDate>

									<content:encoded><![CDATA[<p>Arithmetic Operators.  	Assignment Operators.  	Relational Operators.  	Logical Operators.  	Bitwise Operators.  	Other Operators.</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">4fa0a7c6d517c17025cfe95fccde9a81</guid>
				<title>asiyashifa started the topic Example for modifier in c++ in the forum C++</title>
				<link>https://developerpublish.com/academy/forums/topic/example-for-modifier-in-c/</link>
				<pubDate>Tue, 30 May 2023 07:26:58 +0000</pubDate>

									<content:encoded><![CDATA[<p>Example: char ch = &#8216;A&#8217;; Integer : Integer data type is used to store a value of numeric type. Keyword int is used to declare variables of integer type. Memory size of a variable of integer data type is dependent on Operating System.</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">e9db7d56ddb2c806308de817896c1a37</guid>
				<title>asiyashifa started the topic Fundamental types in c++ in the forum C++</title>
				<link>https://developerpublish.com/academy/forums/topic/fundamental-types-in-c/</link>
				<pubDate>Tue, 30 May 2023 07:25:13 +0000</pubDate>

									<content:encoded><![CDATA[<p>C++ Fundamental Data Types<br />
Data Type	Meaning	Size (in Bytes)<br />
int	Integer	2 or 4<br />
float	Floating-point	4<br />
double	Double Floating-point	8<br />
char	Character	1</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">34bb5426f77590c08a507338f0291837</guid>
				<title>asiyashifa started the topic Arguments in c++ in the forum C++</title>
				<link>https://developerpublish.com/academy/forums/topic/arguments-in-c/</link>
				<pubDate>Tue, 30 May 2023 07:22:38 +0000</pubDate>

									<content:encoded><![CDATA[<p>An argument in C++ is the value that is passed to a function whenever that specific function is called. Furthermore, a parameter is specified inside a parenthesis () right after the function name. We can add as many parameter values as we wish to inside a function</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">9d78619c50f66f553f4165c437a3fd5d</guid>
				<title>asiyashifa started the topic Log() in c++ in the forum C++</title>
				<link>https://developerpublish.com/academy/forums/topic/log-in-c-2/</link>
				<pubDate>Tue, 30 May 2023 07:20:24 +0000</pubDate>

									<content:encoded><![CDATA[<p>The log() function in C++ returns the natural logarithm (base-e logarithm) of the argument. This function is defined in &lt;cmath&gt; header file. [Mathematics] logex = log(x) [In C++ Programming]</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">251403fdb9c08dcd0c8f7518e755325d</guid>
				<title>asiyashifa started the topic Closing a file in c++ in the forum C++</title>
				<link>https://developerpublish.com/academy/forums/topic/closing-a-file-in-c/</link>
				<pubDate>Tue, 30 May 2023 07:15:33 +0000</pubDate>

									<content:encoded><![CDATA[<p>Closing a file in C++<br />
Whenever the C++ program comes to an end, it clears the allocated memory, and it closes the file. We can perform the task with the help of close() function.</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">cf8ecd438b8277c9a67d7fdbc43b2175</guid>
				<title>asiyashifa wrote a new item</title>
				<link>https://developerpublish.com/academy/?p=23339</link>
				<pubDate>Sat, 27 May 2023 08:14:22 +0000</pubDate>

									<content:encoded><![CDATA[<p>To make changes to a document, in the upper-right corner, select Edit Document &gt; Edit. If someone else created the document, they might not allow editing. You can go to File &gt; Save as, save it with another [&hellip;]</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">0da91caa851c819bbb14032d17d01e7f</guid>
				<title>asiyashifa wrote a new item</title>
				<link>https://developerpublish.com/academy/?p=23334</link>
				<pubDate>Sat, 27 May 2023 08:06:07 +0000</pubDate>

									<content:encoded><![CDATA[<p>Click Insert &gt; Object in the Text group. For Outlook, click inside of the body of an item, such as an email message or calendar event.  	Click Create from File &gt; Browse.  	Browse to the . pdf file you want to [&hellip;]</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">c102b06ef09744c5033e192ba8d6dc62</guid>
				<title>asiyashifa started the topic Insert pdf file in a ms word in the forum Microsoft Word</title>
				<link>https://developerpublish.com/academy/forums/topic/insert-pdf-file-in-a-ms-word/</link>
				<pubDate>Sat, 27 May 2023 06:29:17 +0000</pubDate>

									<content:encoded><![CDATA[<p>Click Insert &gt; Object in the Text group. For Outlook, click inside of the body of an item, such as an email message or calendar event.<br />
Click Create from File &gt; Browse.<br />
Browse to the . pdf file you want to insert, and then click Open.<br />
Click OK.</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">886b9980f454889721d0bb82893b8851</guid>
				<title>asiyashifa started the topic Create a file in ms word in the forum Microsoft Word</title>
				<link>https://developerpublish.com/academy/forums/topic/create-a-file-in-ms-word/</link>
				<pubDate>Sat, 27 May 2023 06:27:37 +0000</pubDate>

									<content:encoded><![CDATA[<p>Open Word. Or, if Word is already open, select File &gt; New.<br />
In the Search for online templates box, enter a search word like letter, resume, or invoice. Or, select a category under the search box like Business, Personal, or Education.<br />
Click a template to see a preview. &#8230;<br />
Select Create.</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">8fc9e5ba96a3603a32de642d23afd3af</guid>
				<title>asiyashifa started the topic Insert a file in ms word in the forum Microsoft Word</title>
				<link>https://developerpublish.com/academy/forums/topic/insert-a-file-in-ms-word/</link>
				<pubDate>Sat, 27 May 2023 06:26:06 +0000</pubDate>

									<content:encoded><![CDATA[<p>Go to Insert &gt; Object.<br />
Select Create from File.<br />
Select Browse and choose the file you want to use.<br />
Select Insert.<br />
Choose Display as icon to embed, or Link to file for a link.<br />
Select OK.</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">b37dc2b82b3ce46e79d34ace207e23b5</guid>
				<title>asiyashifa started the topic Shortcut for Count the values in the forum Microsoft Word</title>
				<link>https://developerpublish.com/academy/forums/topic/shortcut-for-count-the-values/</link>
				<pubDate>Sat, 27 May 2023 04:55:14 +0000</pubDate>

									<content:encoded><![CDATA[<p>Pressing Ctrl+Shift+G will instantly bring up your word count to provide you with that all-important visual affirmation that you are, indeed, &#8230;</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">b5824a49460a0cce873e4f687572114b</guid>
				<title>asiyashifa started the topic Save the document in the forum Microsoft Word</title>
				<link>https://developerpublish.com/academy/forums/topic/save-the-document/</link>
				<pubDate>Sat, 27 May 2023 04:52:19 +0000</pubDate>

									<content:encoded><![CDATA[<p>Other Shortcut keys Using Ctrl, Shift and Alt ; Alt + Shift + F2. Save your document. If you haven&#8217;t saved your document previously, it opens the Save As window.</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">0b5c31f27e005d09392d6d26b48445a0</guid>
				<title>asiyashifa wrote a new item</title>
				<link>https://developerpublish.com/academy/?p=22816</link>
				<pubDate>Thu, 25 May 2023 08:09:43 +0000</pubDate>

									<content:encoded><![CDATA[<p>First, select the cell(s) that you want to delete or remove from the spreadsheet. After that, simply press the Ctrl + -keys together and you will get the “Delete” dialog box opened.</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">a076161cdbef61159ea735deeba21b71</guid>
				<title>asiyashifa started the topic Add a percentage in a cell value in the forum Microsoft Excel</title>
				<link>https://developerpublish.com/academy/forums/topic/add-a-percentage-in-a-cell-value/</link>
				<pubDate>Thu, 25 May 2023 08:00:18 +0000</pubDate>

									<content:encoded><![CDATA[<p>You can add a percentage to a cell value in Excel by using the formula =number*(1+percentage). For example, if you want to add 10% to the value in cell A1, you can use the formula =A1*(1+10%). You can also use the Percent Style button in the Number ribbon group from the Home tab to format the values as a percentage add a percentage to a cell value&hellip;<span class="activity-read-more" id="activity-read-more-1970"><a href="https://developerpublish.com/academy/forums/topic/add-a-percentage-in-a-cell-value/" rel="nofollow ugc">[Read more]</a></span></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">8bef93b9765c5e897909d9a1a11b11d8</guid>
				<title>asiyashifa started the topic Named range in excel in the forum Microsoft Excel</title>
				<link>https://developerpublish.com/academy/forums/topic/named-range-in-excel/</link>
				<pubDate>Thu, 25 May 2023 07:52:03 +0000</pubDate>

									<content:encoded><![CDATA[<p>We can use the name for the cell Ranges instead of the cell reference (such as A1 or A1:A10). We can create a named range for a range of cells and use then use that name directly in the Excel formulas. When we have huge data sets, Excel-named ranges make it easy to refer (by directly using a name to that data set).</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">d5ea6f4a9d938a91a1ef4dd9ee71dd2d</guid>
				<title>asiyashifa started the topic Roots of quadratic equation in the forum C Programming</title>
				<link>https://developerpublish.com/academy/forums/topic/roots-of-quadratic-equation/</link>
				<pubDate>Thu, 25 May 2023 07:22:33 +0000</pubDate>

									<content:encoded><![CDATA[<p>uadratic Equation<br />
#include &lt;math.h&gt;<br />
#include &lt;stdio.h&gt;<br />
int main() {<br />
    double a, b, c, discriminant, root1, root2, realPart, imagPart;<br />
    printf(&#8220;Enter coefficients a, b and c: &#8220;);<br />
    scanf(&#8220;%lf %lf %lf&#8221;, &amp;a, &amp;b, &amp;c);</p>
<p>    discriminant = b * b &#8211; 4 * a * c;</p>
<p>    // condition for real and different roots<br />
    if (discriminant &gt; 0) {<br />
        root1&hellip;<span class="activity-read-more" id="activity-read-more-1951"><a href="https://developerpublish.com/academy/forums/topic/roots-of-quadratic-equation/" rel="nofollow ugc">[Read more]</a></span></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">bf89088ed7e95e35bdca42341598e729</guid>
				<title>asiyashifa wrote a new item</title>
				<link>https://developerpublish.com/academy/?p=22617</link>
				<pubDate>Wed, 24 May 2023 05:11:11 +0000</pubDate>

									<content:encoded><![CDATA[<p>printf(&#8220;Quotient = %dn&#8221;, quotient); printf(&#8220;Remainder = %d&#8221;, remainder);</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">b8908360d3b840a1b3c07584d9189d7b</guid>
				<title>asiyashifa wrote a new item</title>
				<link>https://developerpublish.com/academy/?p=22615</link>
				<pubDate>Wed, 24 May 2023 05:04:46 +0000</pubDate>

									<content:encoded><![CDATA[<p>printf(&#8220;Quotient = %dn&#8221;, quotient); printf(&#8220;Remainder = %d&#8221;, remainder);</p>
]]></content:encoded>
				
				
							</item>
		
	</channel>
</rss>