Print even numbers between interval

C program to print EVEN numbers between an interval.

Program

#include<stdio.h>
#include<conio.h>
void main()
{
	int low, high, i;

    printf("Enter two numbers (interval)\t:");
    scanf("%d%d",&low,&high);

    printf("Even number from %d to %d are\n",low,high);
    for(i=low;i<=high;i++)
    {
        if(i % 2 == 0)
        {
            printf("%d ",i);
        }
    }

    getch();
}

Output

Enter two numbers (interval)    :14
74
Even number from 14 to 74 are
14 16 18 20 22 24 26 28 30 32 34 36 38 40 42 44 46 48 50 52 54 56 58 60 62 64 66 68 70 72 74