Skip to content

Instantly share code, notes, and snippets.

@putheakhem
Created November 13, 2017 15:19
Show Gist options
  • Save putheakhem/31059ac37e777297054557c8d708a712 to your computer and use it in GitHub Desktop.
Save putheakhem/31059ac37e777297054557c8d708a712 to your computer and use it in GitHub Desktop.
A prime number is a positive integer which is divisible only by 1 and itself. For example: 2, 3, 5, 7, 11, 13
#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)
{
// condition for nonprime number
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