Showing posts with label write a c program to find prime numbers. Show all posts
Showing posts with label write a c program to find prime numbers. Show all posts

write a c program to find prime numbers

main()
{
int i,j=2,ch=0;
clrscr();
printf("\nENTER ANY NUMBER");
scanf("%d",&i);
while(j<=i/2)
{
if(i%j==0)
{
printf("%d IS NOT PRIME",i);
ch=1;
break;
}
else
{
j++;
}
}
if(ch==0)
{
printf("%d IS PRIME",i);
}
}

Labels