Computer Science, asked by badiyaniriddhi, 7 months ago

Write a program to display the first 50 even numbers in descending order

Answers

Answered by yesiamin6
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