A program that read an integer & display odd or even.

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


void main()
{
    int n;
    clrscr();
    printf("Enter any number = ");
    scanf("%d",&n);
   
    printf("%s",(n%2==0)? "Even number.":"Odd number.");
   
    getch();
}


///////////////////////////////////////////////////////////////////////////
Copy & paste this code in your TC & run, then you will get output.......
If you have any problem please comment below.........