Question: This programming assignment is to do one dimensional matrix multiplication. The array size should be allocated using a #define constant as shown below. You program
This programming assignment is to do one dimensional matrix multiplication. The array size should be allocated using a #define constant as shown below. You program should do the following Declare three arrays Load the first array with digit values of your Red like this: (8, 1, 2, 3, 4, 5, 6, 7, 8) Multiply the individual values in the first array by the values in the second array Place the individual products in the third array Print all three arrays, label and print one array on each line WHEN SUBMITTING: copy the source code and program output into a single DOC or PDF file and submit ONE file with both as described below/* Lab 6 part 1-Your name, Red ID, section number */#define SIZE 10//array size int main (void)//multiply two arrays {int array1 [SIZE] = {8, 1, 2, 3, ...};//first array has your Red digits int array2 [SIZE] = {1, 2, 3, 4, ...};//second array has number 1-9 int array3 [SIZE], //declare 3rd array with SIZE elements to store results//your code goes here multiply the two arrays, put result in 3rd array, than print all 3 arrays} Your code should print the 3 arrays FORMATTED as follows Array1 = 0 1 2 3 ... leftarrow your red digits is the array Array2 = 1 2 3 4.. leftarrow number 1 2 3 .. 9 Array3 = 0 2 4 12... leftarrow products of each array element
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
