Pascal trangle program in c
Pascal trangle program in c
Pascal trangle program in c
Pascal Triangle is a Triangle form which, each number is the sum of immediate top row near by numbers. The Value of edge is always 1.
1 1 1 1 2 1 1 3 3 1 1 4 6 4 1 Let's Start C program:
#include int main() { int rows, coef = 1, space, i, j; printf("Enter number of rows:…
View On WordPress















