Q18 Write a c program to print the Pascal Triangle on the screen.
Program: 111
Write a c program to print the Pascal Triangle on the screen.
1
1 1
1 2 1
1 3 3 1
1 4 6 4 1
Output:
1
1 1
1 2 1
1 3 3 1
1 4 6 4 1