Vision and dreams are the blueprints of soul and achievements.
-Mohammed Ahmed F

To check the number is even or odd

#include<stdio.h>

main()
{
   int  n;

   printf("Enter an integer\n");
   scanf("%d",&n);

   if ( n%2 == 0 )
      printf("Even\n");
   else
      printf("Odd\n");

   return  0;
}

OUTPUT : Enter an integer 9
Odd

Share this

Related Posts

Dear User,

Thank you for your comment. Hope you like this blog. Kindly share us on Social Media so others can be updated.

-Chief Administrative Officer.

Note: only a member of this blog may post a comment.