write a program to print even no.s between two no.s 'a' and 'b'.
Anonymous
#include main() { int a,b,i; puts("Enter the limits"); scanf("%d %d",&a,&b); for(i=a;i<=b;i++) { if(i%2==0) printf("%d \t", i); } }
Check out your Company Bowl for anonymous work chats.