All pastes #2120164 Raw Edit

Anonymous

public text v1 · immutable
#2120164 ·published 2012-02-20 15:14 UTC
rendered paste body
#include<stdio.h>
void main()
{
    int a;
    printf("\nEnter any number = ");
    scanf("%d",&a);
    if(a%2==0)
    {
        printf("\nThe no is even");
    }
    else
    {
        printf("\nThe no is odd");
    }
}