In this easy coded program, you will learn how to print even numbers from 1 to 20 using while loop. You will not need to take any input from the user as we are defining the end point.
---------------------------------------------------------------------------
Hope you found this 'C Program to Print Even Numbers from 1 to 20- while Loop' easy, simple and helpful!
Try to solve more queries by yourself by referring more examples from BEGINC. Here you will get the most easiest code to each and every query. Keep practicing. More programs are coming.
---------------------------------------------------------------------------
Program to Print Even Numbers from 1 to 20
/*Even Numbers from 1 to 20- while Loop*/
|
#include<stdio.h>
|
void main()
|
{
|
int
i=2;
|
while(i<=20)
|
{
|
printf("%d\t",
i);
|
i+=2;
|
}
|
}
|
Output
2 4 6 8 10 12 14 16 18 20---------------------------------------------------------------------------
Hope you found this 'C Program to Print Even Numbers from 1 to 20- while Loop' easy, simple and helpful!
Try to solve more queries by yourself by referring more examples from BEGINC. Here you will get the most easiest code to each and every query. Keep practicing. More programs are coming.
Comments
Post a Comment
Please do not comment any spam links in the comment box.