Write a program to display the first 50 even numbers in descending order
Answers
Answered by
0
Answer:
It's is the code in C-language
Explanation:
#include<stdio.h>
#include<conio.h>
int main()
{
int i=0,n=50;
for(i=n;i>0;i--)
{
if(i%2==0)
printf("%d\n",i);
}
getch();
}
//do follow me for more programs
Similar questions
Social Sciences,
3 months ago
India Languages,
3 months ago
English,
7 months ago
English,
11 months ago
Science,
11 months ago