Exercise 4: Pascal’s Triangle
Create a function that displays the Pascal’s triangle for any given size.
We'll cover the following...
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 ...