IUBAT BCSE
Subject Code
CSE 183
CSE 283
ENG 250
PHI 114
PHY 111
Sunday, 14 December 2014
Write a program that will print even number from 1 to 100
#include<stdio.h>
void main()
{
int i;
for(i=1;i<=100;i++)
{
if(i%2==0)
printf(" %d",i);
}
}
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment