<?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>C Programs and Algorithms Archives - TECHAntena</title>
	<atom:link href="https://www.techantena.com/tag/c-programs-and-algorithms/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.techantena.com/tag/c-programs-and-algorithms/</link>
	<description>Tech &#38; Programming Tutorials</description>
	<lastBuildDate>Sun, 26 Mar 2023 12:12:43 +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>C Programs and Algorithms Archives - TECHAntena</title>
	<link>https://www.techantena.com/tag/c-programs-and-algorithms/</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">109684828</site>	<item>
		<title>C Program to Find the Largest Number Among Three Numbers</title>
		<link>https://www.techantena.com/4991/c-program-to-find-the-largest-number-among-three-numbers/</link>
					<comments>https://www.techantena.com/4991/c-program-to-find-the-largest-number-among-three-numbers/#respond</comments>
		
		<dc:creator><![CDATA[Adeeb C]]></dc:creator>
		<pubDate>Sun, 26 Mar 2023 12:12:43 +0000</pubDate>
				<category><![CDATA[C]]></category>
		<category><![CDATA[Programing]]></category>
		<category><![CDATA[C Programs and Algorithms]]></category>
		<guid isPermaLink="false">https://www.techantena.com/?p=4991</guid>

					<description><![CDATA[<p>In this article, we will discuss a C program that allows you to find the largest number among three given numbers. The tutorial includes a detailed explanation of the algorithm, example code, and a mermaid diagram to help you understand the process. Algorithm to Determine the Largest Number The algorithm we will implement follows these [&#8230;]</p>
<p>The post <a href="https://www.techantena.com/4991/c-program-to-find-the-largest-number-among-three-numbers/">C Program to Find the Largest Number Among Three Numbers</a> appeared first on <a href="https://www.techantena.com">TECHAntena</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.techantena.com/4991/c-program-to-find-the-largest-number-among-three-numbers/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">4991</post-id>	</item>
		<item>
		<title>Algorithm to find factorial of a number using iteration in C program</title>
		<link>https://www.techantena.com/4931/algorithm-to-find-factorial-of-a-number-using-iteration-in-c/</link>
					<comments>https://www.techantena.com/4931/algorithm-to-find-factorial-of-a-number-using-iteration-in-c/#respond</comments>
		
		<dc:creator><![CDATA[Adeeb C]]></dc:creator>
		<pubDate>Sun, 29 Jan 2023 04:06:20 +0000</pubDate>
				<category><![CDATA[C]]></category>
		<category><![CDATA[Programing]]></category>
		<category><![CDATA[C Programs and Algorithms]]></category>
		<guid isPermaLink="false">https://www.techantena.com/?p=4931</guid>

					<description><![CDATA[<p>Here is the Algorithm to find factorial of a number using iteration and with examples in C program. Factorial of a Number using Iteration Algorithm Initialize a variable &#8220;num&#8221; to store the input number, a variable &#8220;i&#8221; to use as a counter in the loop, and a variable &#8220;fact&#8221; to store the factorial result, initially [&#8230;]</p>
<p>The post <a href="https://www.techantena.com/4931/algorithm-to-find-factorial-of-a-number-using-iteration-in-c/">Algorithm to find factorial of a number using iteration in C program</a> appeared first on <a href="https://www.techantena.com">TECHAntena</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.techantena.com/4931/algorithm-to-find-factorial-of-a-number-using-iteration-in-c/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">4931</post-id>	</item>
		<item>
		<title>C Program to Check a Armstrong Number with Algorithm</title>
		<link>https://www.techantena.com/4870/c-program-to-check-a-armstrong-number-with-algorithm/</link>
					<comments>https://www.techantena.com/4870/c-program-to-check-a-armstrong-number-with-algorithm/#comments</comments>
		
		<dc:creator><![CDATA[Adeeb C]]></dc:creator>
		<pubDate>Wed, 18 Nov 2020 00:35:34 +0000</pubDate>
				<category><![CDATA[C]]></category>
		<category><![CDATA[Programing]]></category>
		<category><![CDATA[C Programs and Algorithms]]></category>
		<guid isPermaLink="false">https://www.techantena.com/?p=4870</guid>

					<description><![CDATA[<p>Here we discuss the C Program to Check a Armstrong Number with the help of step by step algorithm. Aim: Write a C Program to Check weather a given number is Armstrong or not. Algorithm: Step 1: Begin Step 2: Read an integer value and assign to a variable num Step 3: Copy the value [&#8230;]</p>
<p>The post <a href="https://www.techantena.com/4870/c-program-to-check-a-armstrong-number-with-algorithm/">C Program to Check a Armstrong Number with Algorithm</a> appeared first on <a href="https://www.techantena.com">TECHAntena</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.techantena.com/4870/c-program-to-check-a-armstrong-number-with-algorithm/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">4870</post-id>	</item>
		<item>
		<title>C Program to Print Alphabets from a-z with Algorithm</title>
		<link>https://www.techantena.com/4864/c-program-to-print-alphabets-from-a-z/</link>
					<comments>https://www.techantena.com/4864/c-program-to-print-alphabets-from-a-z/#respond</comments>
		
		<dc:creator><![CDATA[Adeeb C]]></dc:creator>
		<pubDate>Tue, 17 Nov 2020 20:22:12 +0000</pubDate>
				<category><![CDATA[C]]></category>
		<category><![CDATA[Programing]]></category>
		<category><![CDATA[C Programs and Algorithms]]></category>
		<guid isPermaLink="false">https://www.techantena.com/?p=4864</guid>

					<description><![CDATA[<p>Here, we just get a look into a C program to print alphabets from a-z and it&#8217;s step by step algorithm. Aim: Write a C program to print English alphabets from a-z. Algorithm: Step 1: Start the program. Step 2: Read the value of the character variable namely le. step 3: Set a loop counter [&#8230;]</p>
<p>The post <a href="https://www.techantena.com/4864/c-program-to-print-alphabets-from-a-z/">C Program to Print Alphabets from a-z with Algorithm</a> appeared first on <a href="https://www.techantena.com">TECHAntena</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.techantena.com/4864/c-program-to-print-alphabets-from-a-z/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">4864</post-id>	</item>
		<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 to Print Sum &#038; Average of Three Numbers</title>
		<link>https://www.techantena.com/4103/c-program-to-print-sum-average-of-three-numbers/</link>
					<comments>https://www.techantena.com/4103/c-program-to-print-sum-average-of-three-numbers/#respond</comments>
		
		<dc:creator><![CDATA[Adeeb C]]></dc:creator>
		<pubDate>Mon, 08 May 2017 15:10:14 +0000</pubDate>
				<category><![CDATA[C]]></category>
		<category><![CDATA[Programing]]></category>
		<category><![CDATA[C Programs and Algorithms]]></category>
		<category><![CDATA[Programs]]></category>
		<guid isPermaLink="false">https://www.techantena.com/?p=4103</guid>

					<description><![CDATA[<p>Aim: Write a program to print sum and average of three numbers. Program Code: #include&#60;stdio.h&#62; #include&#60;conio.h&#62; void main() {  int a,b,c,sum,avg;  clrscr();  scanf("%d",&#38;a); scanf("%d",&#38;b); scanf("%d",&#38;c); sum=a+b+c; avg=sum/3; printf("Sum = %d, Avg = %d",sum,avg); getch(); } &#160; Output: 4 6 8 Sum = 18 Avg = 6</p>
<p>The post <a href="https://www.techantena.com/4103/c-program-to-print-sum-average-of-three-numbers/">C Program to Print Sum &#038; Average of Three Numbers</a> appeared first on <a href="https://www.techantena.com">TECHAntena</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.techantena.com/4103/c-program-to-print-sum-average-of-three-numbers/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">4103</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>
	</channel>
</rss>
