Thursday, 26 April 2018

Program to print first five even number in C

/* first five even number */
# include <stdio.h>
void main ()
{
int a = 2 ;
clrscr () ;
while (a<=10)
{
printf ("/n %d", a) ;
a = a+2 ;
}
getch () ;
}



No comments:

Post a Comment

Featured post

Kalgudi Interview Round!!

Those who cleared the second round of kalgudi got an email from exceller to complete their Kalgudi Interview Round. So here we will discuss ...