#include //code to print even number void main() { for( i=1;i <=100;i++) { if(i%2==0 ) { Printf("Even no are %d:-",i); } } }