C programming code to display the first n even numbers
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();
}