16. Program to print first n even numbers.
#include<stdio.h>
#include<conio.h>
void main()
{
int i = 2, n;
//to print odd numbers set variable i = 1
clrscr();
printf("Enter n : ");
scanf("%d", &n);
while(i<=n)
{
printf("%d\t", i);
i = i + 2;
}
getch();
}
#while_loop
@C_Codings
No comments:
Post a Comment