Praveen | Typing Speed Test is a very useful Software available for free Download.

C Program to Find Number is Even or Odd


      This C Program to Find Given Number is Even Or Odd Numbers. It is a Simplest Method of Finding Number is Even Or Odd number


C programming code

#include<stdio.h>
#include<conio.h>

void main()
{
    int n;
    clrscr();
    printf("\n Enter The Number ");
    scanf("%d",&n );
    if( n % 2 == 0 )
         printf("\n %d Number is Even",n );
    else
         printf("\n %d Number is Odd",n );
    getch();
}


Output:-