You need to prepare a program to print out a multiplication table:
Program: Create a program using C++ that prints out a multiplication table up to a specific 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
Please help me by prepare a code that shows this output. Can you write this program in C++ language?