<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Algorithms Archives - TECHAntena</title>
	<atom:link href="https://www.techantena.com/tag/algorithms/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.techantena.com/tag/algorithms/</link>
	<description>Tech &#38; Programming Tutorials</description>
	<lastBuildDate>Tue, 29 Nov 2022 02:31:28 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://www.techantena.com/wp-content/uploads/2019/03/logo_icon.png</url>
	<title>Algorithms Archives - TECHAntena</title>
	<link>https://www.techantena.com/tag/algorithms/</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">109684828</site>	<item>
		<title>Algorithm to find factorial of a number using recursion with C program</title>
		<link>https://www.techantena.com/2003/c-program-algorithm-to-find-factorial-of-number-using-recursion/</link>
					<comments>https://www.techantena.com/2003/c-program-algorithm-to-find-factorial-of-number-using-recursion/#respond</comments>
		
		<dc:creator><![CDATA[Adeeb C]]></dc:creator>
		<pubDate>Thu, 01 Jun 2017 17:32:21 +0000</pubDate>
				<category><![CDATA[C]]></category>
		<category><![CDATA[Programing]]></category>
		<category><![CDATA[algorithm to factorial using recursion]]></category>
		<category><![CDATA[Algorithms]]></category>
		<category><![CDATA[C Programs and Algorithms]]></category>
		<category><![CDATA[Programs]]></category>
		<guid isPermaLink="false">https://techantena.com/?p=2003</guid>

					<description><![CDATA[<p>This is the C program code and algorithm to finding factorial of a given number using recursion. Factorial using Recursion Aim: Write a C program to find the factorial of a given number using recursion. Algorithm: Step 1: Start Step 2: Read number n Step 3: Call factorial(n) Step 4: Print factorial f Step 5: [&#8230;]</p>
<p>The post <a href="https://www.techantena.com/2003/c-program-algorithm-to-find-factorial-of-number-using-recursion/">Algorithm to find factorial of a number using recursion with C program</a> appeared first on <a href="https://www.techantena.com">TECHAntena</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.techantena.com/2003/c-program-algorithm-to-find-factorial-of-number-using-recursion/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2003</post-id>	</item>
		<item>
		<title>C Program &#038; Algorithm to check whether the given number is Prime or not</title>
		<link>https://www.techantena.com/2005/c-program-algorithm-check-whether-given-number-prime-not/</link>
					<comments>https://www.techantena.com/2005/c-program-algorithm-check-whether-given-number-prime-not/#respond</comments>
		
		<dc:creator><![CDATA[Adeeb C]]></dc:creator>
		<pubDate>Fri, 16 Sep 2016 17:56:30 +0000</pubDate>
				<category><![CDATA[C]]></category>
		<category><![CDATA[Programing]]></category>
		<category><![CDATA[Algorithms]]></category>
		<category><![CDATA[C Programs and Algorithms]]></category>
		<category><![CDATA[Programs]]></category>
		<guid isPermaLink="false">https://techantena.com/?p=2005</guid>

					<description><![CDATA[<p>This is the C program code and algorithm for checking whether the given number is prime or not. Aim: Write a C program to check whether the given number is prime or not. Algorithm to check whether the given number is Prime or not Algorithm: Step 1: Start Step 2: Read number n Step 3: Set [&#8230;]</p>
<p>The post <a href="https://www.techantena.com/2005/c-program-algorithm-check-whether-given-number-prime-not/">C Program &#038; Algorithm to check whether the given number is Prime or not</a> appeared first on <a href="https://www.techantena.com">TECHAntena</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.techantena.com/2005/c-program-algorithm-check-whether-given-number-prime-not/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2005</post-id>	</item>
		<item>
		<title>C Program &#038; Algorithm to find the factorial of a given number</title>
		<link>https://www.techantena.com/2000/c-program-and-algorithm-find-factorial-of-given-number/</link>
					<comments>https://www.techantena.com/2000/c-program-and-algorithm-find-factorial-of-given-number/#respond</comments>
		
		<dc:creator><![CDATA[Adeeb C]]></dc:creator>
		<pubDate>Thu, 15 Sep 2016 15:56:19 +0000</pubDate>
				<category><![CDATA[C]]></category>
		<category><![CDATA[Programing]]></category>
		<category><![CDATA[Algorithms]]></category>
		<category><![CDATA[C Programs and Algorithms]]></category>
		<category><![CDATA[Programs]]></category>
		<guid isPermaLink="false">https://techantena.com/?p=2000</guid>

					<description><![CDATA[<p>This is the C program code and algorithm for finding the factorial of a given number. Aim: Write a C program to find the factorial of a given number. Algorithm: Step 1: Start Step 2: Read number n Step 3: Set f=1 Step 4: Repeat step 5 and step6 while n&#62;0 Step 5: Set f=f*n Step [&#8230;]</p>
<p>The post <a href="https://www.techantena.com/2000/c-program-and-algorithm-find-factorial-of-given-number/">C Program &#038; Algorithm to find the factorial of a given number</a> appeared first on <a href="https://www.techantena.com">TECHAntena</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.techantena.com/2000/c-program-and-algorithm-find-factorial-of-given-number/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2000</post-id>	</item>
		<item>
		<title>C Program to check whether leap year or not with Algorithm</title>
		<link>https://www.techantena.com/1993/c-program-to-check-leap-year-with-algorithm/</link>
					<comments>https://www.techantena.com/1993/c-program-to-check-leap-year-with-algorithm/#respond</comments>
		
		<dc:creator><![CDATA[Adeeb C]]></dc:creator>
		<pubDate>Thu, 15 Sep 2016 15:16:39 +0000</pubDate>
				<category><![CDATA[C]]></category>
		<category><![CDATA[Programing]]></category>
		<category><![CDATA[Algorithms]]></category>
		<category><![CDATA[C Programs and Algorithms]]></category>
		<category><![CDATA[Programs]]></category>
		<guid isPermaLink="false">https://techantena.com/?p=1993</guid>

					<description><![CDATA[<p>This is the C program code and algorithm for checking whether the given year is a leap year or not. Aim: Write a C program to check whether the given year is a leap year or not. Algorithm: Step 1: Start Step 2: Read year year Step 3: if year mod 400 is 0, print the year [&#8230;]</p>
<p>The post <a href="https://www.techantena.com/1993/c-program-to-check-leap-year-with-algorithm/">C Program to check whether leap year or not with Algorithm</a> appeared first on <a href="https://www.techantena.com">TECHAntena</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.techantena.com/1993/c-program-to-check-leap-year-with-algorithm/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1993</post-id>	</item>
		<item>
		<title>C Program to find the sum of digits and reverse of a number with Algorithm</title>
		<link>https://www.techantena.com/1991/c-program-to-find-sum-of-digits-reverse-of-number-with-algorithm/</link>
					<comments>https://www.techantena.com/1991/c-program-to-find-sum-of-digits-reverse-of-number-with-algorithm/#comments</comments>
		
		<dc:creator><![CDATA[Adeeb C]]></dc:creator>
		<pubDate>Thu, 15 Sep 2016 14:05:11 +0000</pubDate>
				<category><![CDATA[C]]></category>
		<category><![CDATA[Programing]]></category>
		<category><![CDATA[Algorithms]]></category>
		<category><![CDATA[C Programs and Algorithms]]></category>
		<category><![CDATA[Programs]]></category>
		<guid isPermaLink="false">https://techantena.com/?p=1991</guid>

					<description><![CDATA[<p>This is the C program code and algorithm for finding the sum of digits and reverse of a number. Aim: Write a C program to find the sum of digits and the reverse of a number. Algorithm: Step 1: Start Step 2: Read number num Step 3: Set sum=0 and rev=0 Step 4: Repeat step [&#8230;]</p>
<p>The post <a href="https://www.techantena.com/1991/c-program-to-find-sum-of-digits-reverse-of-number-with-algorithm/">C Program to find the sum of digits and reverse of a number with Algorithm</a> appeared first on <a href="https://www.techantena.com">TECHAntena</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.techantena.com/1991/c-program-to-find-sum-of-digits-reverse-of-number-with-algorithm/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1991</post-id>	</item>
		<item>
		<title>C++ Programs with Algorithms</title>
		<link>https://www.techantena.com/1232/cpp-programs-with-algorithms/</link>
					<comments>https://www.techantena.com/1232/cpp-programs-with-algorithms/#respond</comments>
		
		<dc:creator><![CDATA[Adeeb C]]></dc:creator>
		<pubDate>Sun, 10 Jul 2016 08:53:30 +0000</pubDate>
				<category><![CDATA[C++]]></category>
		<category><![CDATA[Programing]]></category>
		<category><![CDATA[Algorithms]]></category>
		<category><![CDATA[Programs]]></category>
		<guid isPermaLink="false">https://techantena.com/?p=1232</guid>

					<description><![CDATA[<p>Here I am sharing you the complete list of our C++ programs and algorithms, you can bookmark this page for references. This page will be updated when we publish new program and algorithms. 1. Program to find the sum of digits, reverse &#38; prime or not of a number. 2. Program to find the area [&#8230;]</p>
<p>The post <a href="https://www.techantena.com/1232/cpp-programs-with-algorithms/">C++ Programs with Algorithms</a> appeared first on <a href="https://www.techantena.com">TECHAntena</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.techantena.com/1232/cpp-programs-with-algorithms/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1232</post-id>	</item>
		<item>
		<title>C++ Program to Implement Circular Queue Operations (Algorithm)</title>
		<link>https://www.techantena.com/1230/cpp-program-to-implement-circular-queue-operations-algorithm/</link>
					<comments>https://www.techantena.com/1230/cpp-program-to-implement-circular-queue-operations-algorithm/#respond</comments>
		
		<dc:creator><![CDATA[Adeeb C]]></dc:creator>
		<pubDate>Sun, 10 Jul 2016 07:49:58 +0000</pubDate>
				<category><![CDATA[C++]]></category>
		<category><![CDATA[Programing]]></category>
		<category><![CDATA[Algorithms]]></category>
		<category><![CDATA[Programs]]></category>
		<guid isPermaLink="false">https://techantena.com/?p=1230</guid>

					<description><![CDATA[<p>AIM: Write a program to implement circular queue operations. ALGORITHM: INSERT() Step 1: If REAR = SIZE-1 then REAR = 0 Else REAR=REAR + 1 Step 2: If FRONT = REAR then Write (&#8220;Circular Queue Overflow&#8221;) Step 3: CQ[REAR]=X Step 4: If FRONT = -1 then FRONT=0 DELETE() Step 1: If FRONT = -1 then [&#8230;]</p>
<p>The post <a href="https://www.techantena.com/1230/cpp-program-to-implement-circular-queue-operations-algorithm/">C++ Program to Implement Circular Queue Operations (Algorithm)</a> appeared first on <a href="https://www.techantena.com">TECHAntena</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.techantena.com/1230/cpp-program-to-implement-circular-queue-operations-algorithm/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1230</post-id>	</item>
		<item>
		<title>C++ Program to Convert Infix Expressions to Postfix (Algorithm)</title>
		<link>https://www.techantena.com/1226/cpp-program-to-convert-infix-expressions-to-postfix-algorithm/</link>
					<comments>https://www.techantena.com/1226/cpp-program-to-convert-infix-expressions-to-postfix-algorithm/#respond</comments>
		
		<dc:creator><![CDATA[Adeeb C]]></dc:creator>
		<pubDate>Sun, 10 Jul 2016 07:34:08 +0000</pubDate>
				<category><![CDATA[C++]]></category>
		<category><![CDATA[Programing]]></category>
		<category><![CDATA[Algorithms]]></category>
		<category><![CDATA[Programs]]></category>
		<guid isPermaLink="false">https://techantena.com/?p=1226</guid>

					<description><![CDATA[<p>AIM: Write a program to convert infix expressions to postfix. ALGORITHM: 1. Push left parenthesis onto STACK and add right parenthesis at the end of Q. 2. Scan Q from left to right and repeat step 3 to 6 for each element of Q until the STACK is empty. 3. If an operand is encountered [&#8230;]</p>
<p>The post <a href="https://www.techantena.com/1226/cpp-program-to-convert-infix-expressions-to-postfix-algorithm/">C++ Program to Convert Infix Expressions to Postfix (Algorithm)</a> appeared first on <a href="https://www.techantena.com">TECHAntena</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.techantena.com/1226/cpp-program-to-convert-infix-expressions-to-postfix-algorithm/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1226</post-id>	</item>
		<item>
		<title>C++ Program to Implement Doubly Linked List Operations (Algorithm)</title>
		<link>https://www.techantena.com/1224/cpp-program-to-implement-doubly-linked-list-operations-algorithm/</link>
					<comments>https://www.techantena.com/1224/cpp-program-to-implement-doubly-linked-list-operations-algorithm/#respond</comments>
		
		<dc:creator><![CDATA[Adeeb C]]></dc:creator>
		<pubDate>Sun, 10 Jul 2016 06:45:45 +0000</pubDate>
				<category><![CDATA[C++]]></category>
		<category><![CDATA[Programing]]></category>
		<category><![CDATA[Algorithms]]></category>
		<category><![CDATA[Programs]]></category>
		<guid isPermaLink="false">https://techantena.com/?p=1224</guid>

					<description><![CDATA[<p>AIM: Write a program to implement doubly linked list operations. ALGORITHM: PROCEDURE CREATE_QUEUE(TOP) [Where ‘head’ pointer has been caught in pointer ‘TOP’ and function is void] 1. [Allocating memory for new node &#38; having the value from user] Call GETNODE (TOP) DATA (TOP) &#60;&#8211; ‘xyz’ LINK (TOP) &#60;&#8211; 0. 2. [Checking the value of last [&#8230;]</p>
<p>The post <a href="https://www.techantena.com/1224/cpp-program-to-implement-doubly-linked-list-operations-algorithm/">C++ Program to Implement Doubly Linked List Operations (Algorithm)</a> appeared first on <a href="https://www.techantena.com">TECHAntena</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.techantena.com/1224/cpp-program-to-implement-doubly-linked-list-operations-algorithm/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1224</post-id>	</item>
		<item>
		<title>C++ Program to Implement Queue Operations Using Linked List (Algorithm)</title>
		<link>https://www.techantena.com/1219/c-program-to-implement-queue-operations-using-linked-list-algorithm/</link>
					<comments>https://www.techantena.com/1219/c-program-to-implement-queue-operations-using-linked-list-algorithm/#respond</comments>
		
		<dc:creator><![CDATA[Adeeb C]]></dc:creator>
		<pubDate>Sun, 10 Jul 2016 06:34:34 +0000</pubDate>
				<category><![CDATA[C++]]></category>
		<category><![CDATA[Programing]]></category>
		<category><![CDATA[Algorithms]]></category>
		<category><![CDATA[Programs]]></category>
		<guid isPermaLink="false">https://techantena.com/?p=1219</guid>

					<description><![CDATA[<p>AIM: Write a C++ program to implement Queue operations using Linked List. ALGORITHM: PROCEDURE CREATE_QUEUE(TOP) [Where ‘head’ pointer has been caught in pointer ‘TOP’ and function is void] 1. [Allocating memory for new node &#38; having the value from user] Call GETNODE (TOP) DATA (TOP) &#60;&#8211; ‘xyz’ LINK (TOP) &#60;&#8211; 0. 2. [Checking the value [&#8230;]</p>
<p>The post <a href="https://www.techantena.com/1219/c-program-to-implement-queue-operations-using-linked-list-algorithm/">C++ Program to Implement Queue Operations Using Linked List (Algorithm)</a> appeared first on <a href="https://www.techantena.com">TECHAntena</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.techantena.com/1219/c-program-to-implement-queue-operations-using-linked-list-algorithm/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1219</post-id>	</item>
	</channel>
</rss>
