Skip to content

Instantly share code, notes, and snippets.

@CalebCurry
Created November 21, 2018 03:06
Show Gist options
  • Save CalebCurry/d13c30d22ca9cf3aa3c4c74b0b95ca06 to your computer and use it in GitHub Desktop.
Save CalebCurry/d13c30d22ca9cf3aa3c4c74b0b95ca06 to your computer and use it in GitHub Desktop.
//remember to #include <stdbool.h>
bool isPrime = true;
int i;
for(i = 2; i < input; i++)
{
if(number % i == 0)
{
isPrime = false;
break;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment