<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
	
	>
<channel>
	<title>
	Comments on: Program to find the prime numbers between a given range	</title>
	<atom:link href="https://studentprojects.in/software-development/c-tutorials/c/number/program-to-find-the-prime-numbers-between-a-given-range/feed/" rel="self" type="application/rss+xml" />
	<link>https://studentprojects.in/software-development/c-tutorials/c/number/program-to-find-the-prime-numbers-between-a-given-range/</link>
	<description>Microcontroller projects, Circuit Diagrams, Project Ideas</description>
	<lastBuildDate>Wed, 19 Mar 2014 11:17:33 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.1.7</generator>
	<item>
		<title>
		By: Prime numbers and sum of non prime numbers between 1 to 100		</title>
		<link>https://studentprojects.in/software-development/c-tutorials/c/number/program-to-find-the-prime-numbers-between-a-given-range/comment-page-1/#comment-10488</link>

		<dc:creator><![CDATA[Prime numbers and sum of non prime numbers between 1 to 100]]></dc:creator>
		<pubDate>Wed, 19 Mar 2014 11:17:33 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=325#comment-10488</guid>

					<description><![CDATA[//sudheer.k mulapadava

class A 
{
	public static void main(String[] args) 
	{
		int count=0;int sum=0;
		for (int i=2;i&#060;100 ;i++ )
		{
			for (int j=2;j&#060;i ;j++ )
			{
                 if(i%j==0)
					 count++;
			}
				
			   if(count==0)
			   System.out.println(&#034;Prime numbers are :&#034;+i);
			   else
			{
				   
					sum=sum+i;
			}
			count=0;
			
		}
	 System.out.println(&#034; Sum of non Prime numbers are :&#034;+sum);	
	}
}]]></description>
			<content:encoded><![CDATA[<p>//sudheer.k mulapadava</p>
<p>class A<br />
{<br />
	public static void main(String[] args)<br />
	{<br />
		int count=0;int sum=0;<br />
		for (int i=2;i&lt;100 ;i++ )<br />
		{<br />
			for (int j=2;j&lt;i ;j++ )<br />
			{<br />
                 if(i%j==0)<br />
					 count++;<br />
			}</p>
<p>			   if(count==0)<br />
			   System.out.println(&quot;Prime numbers are :&quot;+i);<br />
			   else<br />
			{</p>
<p>					sum=sum+i;<br />
			}<br />
			count=0;</p>
<p>		}<br />
	 System.out.println(&quot; Sum of non Prime numbers are :&quot;+sum);<br />
	}<br />
}</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: xyz		</title>
		<link>https://studentprojects.in/software-development/c-tutorials/c/number/program-to-find-the-prime-numbers-between-a-given-range/comment-page-1/#comment-10239</link>

		<dc:creator><![CDATA[xyz]]></dc:creator>
		<pubDate>Mon, 21 Oct 2013 01:33:12 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=325#comment-10239</guid>

					<description><![CDATA[good]]></description>
			<content:encoded><![CDATA[<p>good</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Apexit		</title>
		<link>https://studentprojects.in/software-development/c-tutorials/c/number/program-to-find-the-prime-numbers-between-a-given-range/comment-page-1/#comment-9855</link>

		<dc:creator><![CDATA[Apexit]]></dc:creator>
		<pubDate>Thu, 27 Jun 2013 16:35:12 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=325#comment-9855</guid>

					<description><![CDATA[#include
void main()
 {
 int i,n,a,b,j=0;
 printf(&quot;enter range in which you want to find out the prime numbers seperated by space: &quot;);
 scanf(&quot;%d%d&quot;,&#038;a,&#038;b);
 if(a&#060;0&#124;&#124;b&#060;0)
  {
  printf(&#034;number is negative&#034;);
  goto there;
  }
  printf(&#034;prime number in entered range are=\n&#034;);
 for(n=a;n&#060;=b;n++)
 {
  for(i=2;i&#060;=(n/2);i++)
	{
	if (n%i==0)
	  j++;
	}
  if(j==0)
	printf(&#034;%d &#034;,n);
	j=0;
 }
 there:

}]]></description>
			<content:encoded><![CDATA[<p>#include<br />
void main()<br />
 {<br />
 int i,n,a,b,j=0;<br />
 printf(&#8220;enter range in which you want to find out the prime numbers seperated by space: &#8220;);<br />
 scanf(&#8220;%d%d&#8221;,&amp;a,&amp;b);<br />
 if(a&lt;0||b&lt;0)<br />
  {<br />
  printf(&quot;number is negative&quot;);<br />
  goto there;<br />
  }<br />
  printf(&quot;prime number in entered range are=\n&quot;);<br />
 for(n=a;n&lt;=b;n++)<br />
 {<br />
  for(i=2;i&lt;=(n/2);i++)<br />
	{<br />
	if (n%i==0)<br />
	  j++;<br />
	}<br />
  if(j==0)<br />
	printf(&quot;%d &quot;,n);<br />
	j=0;<br />
 }<br />
 there:</p>
<p>}</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: omkar		</title>
		<link>https://studentprojects.in/software-development/c-tutorials/c/number/program-to-find-the-prime-numbers-between-a-given-range/comment-page-1/#comment-9801</link>

		<dc:creator><![CDATA[omkar]]></dc:creator>
		<pubDate>Mon, 27 May 2013 15:35:54 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=325#comment-9801</guid>

					<description><![CDATA[nice programme by revathi!! its best one]]></description>
			<content:encoded><![CDATA[<p>nice programme by revathi!! its best one</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: HABEETH		</title>
		<link>https://studentprojects.in/software-development/c-tutorials/c/number/program-to-find-the-prime-numbers-between-a-given-range/comment-page-1/#comment-9289</link>

		<dc:creator><![CDATA[HABEETH]]></dc:creator>
		<pubDate>Wed, 05 Dec 2012 15:09:01 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=325#comment-9289</guid>

					<description><![CDATA[nice program dude........]]></description>
			<content:encoded><![CDATA[<p>nice program dude&#8230;&#8230;..</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: keerti		</title>
		<link>https://studentprojects.in/software-development/c-tutorials/c/number/program-to-find-the-prime-numbers-between-a-given-range/comment-page-1/#comment-9200</link>

		<dc:creator><![CDATA[keerti]]></dc:creator>
		<pubDate>Sun, 18 Nov 2012 09:34:38 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=325#comment-9200</guid>

					<description><![CDATA[thanks]]></description>
			<content:encoded><![CDATA[<p>thanks</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Sam		</title>
		<link>https://studentprojects.in/software-development/c-tutorials/c/number/program-to-find-the-prime-numbers-between-a-given-range/comment-page-1/#comment-9053</link>

		<dc:creator><![CDATA[Sam]]></dc:creator>
		<pubDate>Wed, 10 Oct 2012 05:12:48 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=325#comment-9053</guid>

					<description><![CDATA[thanx a lot.. pls help me wid a prog to convert a num to its binary form..]]></description>
			<content:encoded><![CDATA[<p>thanx a lot.. pls help me wid a prog to convert a num to its binary form..</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: gaurav		</title>
		<link>https://studentprojects.in/software-development/c-tutorials/c/number/program-to-find-the-prime-numbers-between-a-given-range/comment-page-1/#comment-4344</link>

		<dc:creator><![CDATA[gaurav]]></dc:creator>
		<pubDate>Mon, 21 Feb 2011 11:54:29 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=325#comment-4344</guid>

					<description><![CDATA[Thanks for your logic dude which helped me a lot in finding my little
mistake in my program.]]></description>
			<content:encoded><![CDATA[<p>Thanks for your logic dude which helped me a lot in finding my little<br />
mistake in my program.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: nikhil vernekar		</title>
		<link>https://studentprojects.in/software-development/c-tutorials/c/number/program-to-find-the-prime-numbers-between-a-given-range/comment-page-1/#comment-3989</link>

		<dc:creator><![CDATA[nikhil vernekar]]></dc:creator>
		<pubDate>Mon, 07 Feb 2011 05:31:31 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=325#comment-3989</guid>

					<description><![CDATA[thank you]]></description>
			<content:encoded><![CDATA[<p>thank you</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
