write a program to print pattern as
12345
1234
123
12
1
Answers
Answered by
0
Answer:
Logic to print the given number pattern using for loop in C program. Example. Input Input rows: 5 Input columns: 5. Output 1 2 3 4 5 6 7 8 9 10 11
Explanation:
Similar questions