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

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

void main()
{
    int n;
    clrscr();
    cout<<"Enter any number = ";
    cin>>n;
   
    cout<<"%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.........