<?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>Programs Archives - TECHAntena</title>
	<atom:link href="https://www.techantena.com/tag/programs/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.techantena.com/tag/programs/</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>Programs Archives - TECHAntena</title>
	<link>https://www.techantena.com/tag/programs/</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 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>VB.NET Console Application to Calculate Grades From Given Marks</title>
		<link>https://www.techantena.com/2736/vb-net-console-application-calculate-grade-marks/</link>
					<comments>https://www.techantena.com/2736/vb-net-console-application-calculate-grade-marks/#respond</comments>
		
		<dc:creator><![CDATA[Adeeb C]]></dc:creator>
		<pubDate>Mon, 12 Dec 2016 10:07:29 +0000</pubDate>
				<category><![CDATA[Programing]]></category>
		<category><![CDATA[VB.NET]]></category>
		<category><![CDATA[Programs]]></category>
		<category><![CDATA[VB.NET Programs]]></category>
		<guid isPermaLink="false">https://techantena.com/?p=2736</guid>

					<description><![CDATA[<p>Here is a console application in VB.NET to calculate the grades from given marks of a student. Aim: Create a VB.NET console application to read the name and marks of five subjects of a student. And to find the total, average marks, and to calculate grade of the student as follows. Average mark &#62; 90 [&#8230;]</p>
<p>The post <a href="https://www.techantena.com/2736/vb-net-console-application-calculate-grade-marks/">VB.NET Console Application to Calculate Grades From Given Marks</a> appeared first on <a href="https://www.techantena.com">TECHAntena</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.techantena.com/2736/vb-net-console-application-calculate-grade-marks/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2736</post-id>	</item>
		<item>
		<title>Meizu Pro 6 Plus &#8211; Full phone specifications</title>
		<link>https://www.techantena.com/2667/meizu-pro-6-plus-specifications/</link>
					<comments>https://www.techantena.com/2667/meizu-pro-6-plus-specifications/#comments</comments>
		
		<dc:creator><![CDATA[Adeeb C]]></dc:creator>
		<pubDate>Sat, 03 Dec 2016 16:09:57 +0000</pubDate>
				<category><![CDATA[Meizu]]></category>
		<category><![CDATA[Phone Specs]]></category>
		<category><![CDATA[Gadget Specifications]]></category>
		<category><![CDATA[Programs]]></category>
		<guid isPermaLink="false">https://techantena.com/?p=2667</guid>

					<description><![CDATA[<p>Meizu Pro 6 Plus is a dual sim Android smartphone sports 5.7 inches display. It has 12MP primary and 5MP front facing shooter with 4K video capturing. Meizu Pro 6 Plus features 128GB or 64GB (optional) onboard storage space. This phone is powered by Octa-core processor along with 4GB of RAM. Other features of Meizu Pro 6 [&#8230;]</p>
<p>The post <a href="https://www.techantena.com/2667/meizu-pro-6-plus-specifications/">Meizu Pro 6 Plus &#8211; Full phone specifications</a> appeared first on <a href="https://www.techantena.com">TECHAntena</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.techantena.com/2667/meizu-pro-6-plus-specifications/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2667</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>VB.NET Looping Statements: Syntax and Examples [VB.NET Tutorials]</title>
		<link>https://www.techantena.com/1544/vb-net-looping-statements/</link>
					<comments>https://www.techantena.com/1544/vb-net-looping-statements/#comments</comments>
		
		<dc:creator><![CDATA[Adeeb C]]></dc:creator>
		<pubDate>Sun, 28 Aug 2016 17:57:50 +0000</pubDate>
				<category><![CDATA[Programing]]></category>
		<category><![CDATA[VB.NET]]></category>
		<category><![CDATA[Programs]]></category>
		<category><![CDATA[VB Tutorials]]></category>
		<guid isPermaLink="false">https://techantena.com/?p=1544</guid>

					<description><![CDATA[<p>Loop statements in programs are used to execute a block of program codes multiple times. Loop statements allow us to run a set of program codes which are written inside the loop for multiple times. The codes written inside the loop block are executed while only the given condition is true and the loop automatically ends when the condition [&#8230;]</p>
<p>The post <a href="https://www.techantena.com/1544/vb-net-looping-statements/">VB.NET Looping Statements: Syntax and Examples [VB.NET Tutorials]</a> appeared first on <a href="https://www.techantena.com">TECHAntena</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.techantena.com/1544/vb-net-looping-statements/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1544</post-id>	</item>
		<item>
		<title>Simple Beginner Program in VB &#8211; [VB.NET Tutorials]</title>
		<link>https://www.techantena.com/1407/simple-program-vb-net/</link>
					<comments>https://www.techantena.com/1407/simple-program-vb-net/#respond</comments>
		
		<dc:creator><![CDATA[Adeeb C]]></dc:creator>
		<pubDate>Wed, 10 Aug 2016 21:14:21 +0000</pubDate>
				<category><![CDATA[Programing]]></category>
		<category><![CDATA[VB.NET]]></category>
		<category><![CDATA[Programs]]></category>
		<guid isPermaLink="false">https://techantena.com/?p=1407</guid>

					<description><![CDATA[<p>Are you a beginner to the VB.Net programming, then you should want to start from the beginning. Here we are discussing how to start a new console application project in vb.net and initiate the program coding. After reading this post, you will be able to create a simple hello program yourself. To create your first [&#8230;]</p>
<p>The post <a href="https://www.techantena.com/1407/simple-program-vb-net/">Simple Beginner Program in VB &#8211; [VB.NET Tutorials]</a> appeared first on <a href="https://www.techantena.com">TECHAntena</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.techantena.com/1407/simple-program-vb-net/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1407</post-id>	</item>
	</channel>
</rss>
