...

/

Exercise 4: Pascal’s Triangle

Exercise 4: Pascal’s Triangle

Create a function that displays the Pascal’s triangle for any given size.

Problem statement

Display Pascal’s triangle for the specified size. You’re given the printPascalTr(int size) function. It takes the given size and displays a table that ...