Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Codeplaza/7316998 to your computer and use it in GitHub Desktop.
Save Codeplaza/7316998 to your computer and use it in GitHub Desktop.
#include<stdio.h>
int main()
{
int n;
printf("Enter an integer\n");
scanf("%d",&n);
if ( (n/2)*2 == n )
printf("Even\n");
else
printf("Odd\n");
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment