54321 4321 321 21 1
/**
* C program to print number pattern
* www.rummanansari.com
*/
#include <stdio.h>
int main()
{
int i, j, N;
printf("Enter N: ");
scanf("%d", &N);
for(i=N; i>=1; i--)
{
// Logic to print numbers
for(j=i; j>=1; j--)
{
printf("%d", j);
}
printf("\n");
}
return 0;
}
Output
Enter N: 5
54321
4321
321
21
1
54321 4321 321 21 1
The above pattern consists of N rows (where N is the total rows to be printed). To since the pattern is in descending order hence, to make things easier we will iterate through rows from N-1 instead of 1-N so now the first row is row5, second row is row4 and last row is row1. Each row contains exactly i columns (where i is the current row number).
The step-by-step descriptive logic of the pattern is:
First read the algorithm, then study the program code line by line. After that, compare the code with the output and finally go through the explanation. This approach helps learners understand both the logic and the implementation properly.
After understanding this example, try to rewrite the same program without looking at the code. Then change some values or logic and run it again. This helps improve confidence and keeps learners engaged on the page for longer.