Computer Science, asked by pekhrajsonwani97, 6 hours ago

write program to generate followin pattern.

1
1 2 1
1 3 3 1
1 4 6 4 1​

Answers

Answered by kulbirgillkulbirgill
1

Half Pyramid of Numbers. 1 1 2 1 2 3 1 2 3 4 1 2 3 4 5. C Program #include <stdio.h> int main() { int i, j, rows; printf("Enter the number of rows: ..

Similar questions