belongs to collection: C Language Loop Programs with Examples
Write a C program to print all natural numbers in reverse order
#include <stdio.h> int main() { int i, num; //Read a number from user printf("Enter any number: "); scanf("%d", &num); /*Running loop from the number entered by user, and Decrementing by 1*/ for(i=num; i>=1; i--) { printf("%d\n", i); } return 0; }
Result:
Enter any number: 5
5
4
3
2
1
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Result:
Enter any number: 5
5
4
3
2
1
need an explanation for this answer? contact us directly to get an explanation for this answer