Create a program using C++ that prints out a multiplcation table up to a specfic limit. The code should prompt the user for the limit and then print out the table. You will need nested for loops. To align the values, try using setw(4) in the cout statement (a decimal integer, right aligned, with 4 spaces).
Output Should be:
Enter size of the table: 4
0 0 0 0 0
0 1 2 3 4
0 2 4 6 8
0 3 6 9 12
0 4 8 12 16