11) Write a program to print the following pattern.
Height will be the input.
543212345
5432*2345
543***345
54*****45
5*******5
Answers
Answered by
0
Write a C program to print the given number pattern using for loop. How to print the given pattern of m rows and n columns using for loop in C programming. Logic to print the given number pattern using loop in C program.
Example
Input
Input N: 5
Output
555555555
544444445
543333345
543222345
543212345
543222345
543333345
544444445
555555555
Similar questions