Question: Write a program in C that will display an integer multiplication table. It will take two inputs from the user the X and Y which

Write a program in C that will display an integer multiplication table. It will take two inputs from the user the X and Y which is the number of rows and columns for the table. For example, if the user takes input as X = 5 and Y = 8 then your program should display # 1 2 3 4 5 6 7 8 1 1 2 3 4 5 6 7 8 2 2 4 6 8 10 12 14 16 3 3 6 9 12 15 18 21 24 4 4 8 12 16 20 24 28 32 5 5 10 15 20 25 30 35 40 Make sure to use 5 spaces between any two numbers so that the numbers all line up.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

Heres a C program that takes two inputs from the user X and Y and di... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!