Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save scratchyourbrain/b81fcb6b30eccc75b8f1 to your computer and use it in GitHub Desktop.
Save scratchyourbrain/b81fcb6b30eccc75b8f1 to your computer and use it in GitHub Desktop.
C Program to Check Whether a Number is Prime or Not
#include <stdio.h>
int main()
{
int n, i, flag=0;
printf("Enter a positive integer: ");
scanf("%d",&n);
for(i=2;i<=n/2;++i)
{
if(n%i==0)
{
flag=1;
break;
}
}
if (flag==0)
printf("%d is a prime number.",n);
else
printf("%d is not a prime number.",n);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment