Your IP : 216.73.216.40


Current Path : /var/www/html/venkat/old/
Upload File :
Current File : /var/www/html/venkat/old/lit2015034_1.c

#include<stdio.h>
int compose(int,int);
int main()
{
	int first;
	int last;
	printf("Enter the first and last number:");
	scanf("%d%d",&first,&last);
	compose(first,last);
	return 0;
}
int compose(x,y)
	{
		int i;
		for(i=x;i<=y;i=i+2)
			printf("%d\n",i);
	}