Floyd's triangle

Reverse order number pattern in C using for loop

Reverse order number pattern in C using for loop

In this tutorial, we will discuss a concept of Reverse order number pattern in C using for loop

In C language, we can use for loop, while loop, do-while loop to display various number, star, alphabet and binary number patterns

In this topic, we demonstrate how to display some reversed number patterns using the nested while loop in C language.

Pattern 1

Reverse order number pattern

Reverse order number pattern program 1

#include <stdio.h>
#include <stdlib.h>

int main()
{
    int i,j,rows;//variable declaration
    printf("Enter the number of rows: ");
           scanf("%d",&rows);//get input from user
           for(i=rows; i>=1; i--){//outer for loop
              for(j=i; j>=1; j--){//inner for loop
               printf("%d",i);//print pattern 

           }
           printf("\n");//move to next line

           }
getch();
    return 0;
}

When the above code is compiled and executed, it produces the following results

Enter the number of rows: 6
666666
55555
4444
333
22
1

 

Pattern 2

Reverse order number pattern 2

Reverse order number pattern program 2

#include <stdio.h>
#include <stdlib.h>

int main()
{
    int i,j,rows;//variable declaration
    printf("Enter the number of rows:\n ");
    scanf("%d",&rows);
    printf("\n");//takes input from user
    for(i=1; i<=rows; i++){
        for(j=i; j>=1; j--){
          printf("%d",j);//display pattern
    }
    printf("\n");//move to next line
    }
    getch();
    return 0;
}

When the above code is compiled and executed, it produces the following results

Enter te number of rows:
8

1
21
321
4321
54321
654321
7654321
87654321

 

Pattern 3

Reverse order number pattern 3

Reverse order number pattern program 3

#include <stdio.h>
#include <stdlib.h>

int main()
{
    int i,j,rows;//variable declaration
    printf("Enter the number of rows: ");
    scanf("%d",&rows);//takes input from user
    for( i=rows; i>=1; i--){
        for( j=rows; j>=i; j--){
        printf("%d",j);
        printf(" ");
    }
    printf("\n");Move to next line
    }
    return 0;
}

When the above code is compiled and executed, it produces the following results

Enter the number of rows: 8
8
8 7
8 7 6
8 7 6 5
8 7 6 5 4
8 7 6 5 4 3
8 7 6 5 4 3 2
8 7 6 5 4 3 2 1

 

Suggested for you

For loop in C language

Nested for loop in C language

 

 

Cpp program to display patterns using do while loop
C program to reverse triangle number patterns using while loop
Karmehavannan

I am Mr S.Karmehavannan. Founder and CEO of this website. This website specially designed for the programming learners and very especially programming beginners, this website will gradually lead the learners to develop their programming skill.

View Comments

Recent Posts

PHP Star Triangle pattern program

PHP Star Triangle pattern program In this tutorial, we will discuss about PHP Star Triangle…

1 month ago

PHP Full Pyramid pattern program

PHP Full Pyramid pattern program In this tutorial, we will discuss about PHP Full Pyramid…

1 month ago

5 methods to add two numbers in Java

5 methods to add two numbers in Java In this tutorial, we will discuss the…

2 months ago

Python Full Pyramid star pattern program

Python full Pyramid star pattern program In this tutorial, we will discuss  the concept of…

5 months ago

Write a function or method to convert C into F -Entered by user

Write a function or method to convert C into F -Entered by the user In…

9 months ago

How to write a function or method to convert Celsius into Fahrenheit

How to write a function or method to convert Celsius into Fahrenheit In this tutorial,…

9 months ago