Skip to content

Instantly share code, notes, and snippets.

@CalebCurry
Created November 21, 2018 03:01
Show Gist options
  • Save CalebCurry/6904a7f47460fadfa62465809ef64306 to your computer and use it in GitHub Desktop.
Save CalebCurry/6904a7f47460fadfa62465809ef64306 to your computer and use it in GitHub Desktop.
int input = 25;
for(; input >= 2; input--)
{
//figure out if number is prime here.
if(number is prime)
{
printf("%i\n", input);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment