Q:

C Program to Print Natural Numbers in Reverse order

0

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.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

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 .

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C Number Solved Programs – C Programming

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
C Program to Find the Smallest Among Ten Numbers... >>
<< C Program to convert Binary IP address to 32-bit l...