C programming code to display the first n even numbers

Share This Topic:

Course Details

Field of Study: Computer Science and Engineering
Course Name: C Programming
Course Description: C programming code to display the first n even numbers

#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
int n;
printf(“Enter the number.\n”);
scanf(“%d”,&n);
for(int i=1;i<=n;i++){
printf(“%d “,2*i);
}
getch();
}

Share this article:
Previous Post: C programming code to display the first n odd numbers

December 2, 2014 - In Academics, Computers

Next Post: C programming code to add all numbers divisible by 3 from 1 to 1000

December 2, 2014 - In Academics, Computers

Related Posts

Leave a Reply

Your email address will not be published.