Print Natural Numbers in Reverse order
Write a C Program to Print Natural Numbers in Reverse order. Here’s simple C Program to Print Natural Numbers in Reverse order in C Programming Language.
Numbers in C
Normally, when we work with Numbers, we use primitive data types such as int, short, long, float and double, etc. The number data types, their possible values and number ranges have been explained while discussing C Data Types.
Here is source code of the C Program to Print Natural Numbers in Reverse order. The C program is successfully compiled and run(on Codeblocks) on a Windows system. The program output is also shown in below.
SOURCE CODE : :
/* C Program to Print Natural Numbers in Reverse order */ #include <stdio.h> int main() { int i, n; printf("\nEnter value of n :: "); scanf("%d", &n); printf("\nNatural Numbers in Reverse Order Upto [ %d ] :: \n",n); for(i=n; i>=1; i--) { printf("\t%d\n", i); } return 0; }
Output : :
/* C Program to Print Natural Numbers in Reverse order */ Enter value of n :: 15 Natural Numbers in Reverse Order Upto [ 15 ] :: 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 Process returned 0
Above is the source code for C Program to Print Natural Numbers in Reverse order which is successfully compiled and run on Windows System.The Output of the program is shown above .
If you found any error or any queries related to the above program or any questions or reviews , you wanna to ask from us ,you may Contact Us through our contact Page or you can also comment below in the comment section.We will try our best to reach up to you in short interval.
Thanks for reading the post….