C Program to generate prime numbers between two numbers | prime numbers between n1 and n2
In today’s article, We are going to write a program to find all prime numbers between two numbers in c programming Language.
This article is one of the articles in the Series of Prime number generation programs. In my previous articles, I discussed about
What is prime Number and C program to Check given number is Prime or Not,
Check given Number is Prime or not Using Square Root(sqrt) Function.(Efficient way).
What is prime Number and C program to Check given number is Prime or Not,
Check given Number is Prime or not Using Square Root(sqrt) Function.(Efficient way).
Now, We will discuss about c program to generate prime numbers between two numbers.
The prime numbers between two numbers in c Program Description :
This program accepts two integers from the user and generates all prime numbers between those two Numbers. here I am using two loops one is the Outer loop and the second one is the Inner loop. the outer loop will start with n1(the first number of the user) and ends with n2 (the user’s second number ). The inner loop is a normal prime number logic loop that starts with 2 and ends with n/2 (you can use sqrt(n) ).
The prime numbers between two numbers in C Program:
-
#include<stdio.h>
-
void main()
-
{
-
int i,j,cnt,n1,n2;
-
printf(“Enter two Numbers : “);
-
scanf(“%d%d”,&n1,&n2);
-
// n2 must be grater than n1, so check it first
-
if(n1 > n2)
-
{
-
printf(“n2 must be greater than n1 \n“);
-
return;
-
}
-
-
printf(“prime Numbers between %d and %d are : “,n1,n2);
-
for(i=n1; i<=n2; i++)
-
{
-
// use one count variable, make it as 0 for every iteration
-
cnt = 0;
-
// loop for checking number is prime or not
-
for(j=2; j<=i/2; j++)
-
{
-
if(i%j == 0)
-
{
-
cnt++;
-
break;
-
}
-
}
-
if(cnt == 0)
-
printf(“%d “,i);
-
}
-
-
printf(“\n“);
-
return ;
-
}
Program Output :
Output of Prime number between two numbers program |
3 Responses
[…] C Program to Print Prime Numbers between Two numbers […]
[…] C Program to Print Prime Numbers between Two numbers […]
[…] C Program to Print Prime Numbers between Two numbers […]