Math, asked by ashakomal11, 7 months ago

Write a program to print 1 to 10 in reverse order.​

Answers

Answered by pawanshs9c
0

Answer:

C Program to print natural numbers from 1 to 10 in Reverse

main( )

int i;

clrscr( );

for (i=10; i>=1; i--)

printf(“%d\n”,i);

getch( );

Step-by-step explanation:

please follow me and mark me as brainlist

Similar questions