C Program to Check the Number is Prime Number or Not


To determine whether a number is prime or not in a C program, you can use a simple algorithm that checks for divisibility. A prime number is a natural number greater than 1 that is not a product of two smaller natural numbers other than 1 and itself.

Here’s a basic C program to check if a given number is prime or not:

Program :

#include<stdio.h>
#include<conio.h>
main()
{
int i,p,c=0;
printf(“Enter the Number : “);
scanf(“%d”,&p);
for(i=1;i<=p;i++)
{
if(p%i==0)
{
c++;
}
}
if(c==2){
printf(“%d is a Prime Number.”,p);
}
else
{
printf(“%d is not a Prime Number.”,p);
}
return 0;
}

Output :

Leave a Comment

Your email address will not be published. Required fields are marked *

Shopping Basket
Select the fields to be shown. Others will be hidden. Drag and drop to rearrange the order.
  • Image
  • SKU
  • Rating
  • Price
  • Stock
  • Availability
  • Add to cart
  • Description
  • Content
  • Weight
  • Dimensions
  • Additional information
Click outside to hide the comparison bar
Compare
Verified by MonsterInsights