Using nested loops write program to generate the following pattern on the screen:
65432123456
543212345
4321234
32123
212
1
Answers
Answered by
2
Explanation:
In this program, we generate pyramid like triangle pattern using numbers. And numbers have pattern like this: 1 in first line, 212 in second line, 32123 in third line and so on.
Numeric Pyramid Pattern C Program
Similar questions