Problems
32. Pascal's triangle
Write a function that prints up to 10 rows of Pascal's triangle to the console.
33. Tabular printing of a list of processes
Suppose you have a snapshot of the list of all processes in a system. The information for each process includes name, identifier, status (which can be either running or suspended), account name (under which the process runs), memory size in bytes, and platform (which can be either 32-bit or 64-bit). Your task is to write a function that takes such a list of processes and prints them to the console alphabetically...