Write a function that takes two arrays and their size as inputs, and calculates
ID: 3814730 • Letter: W
Question
Write a function that takes two arrays and their size as inputs, and calculates their inner product (note that both arrays must have the same size so only one argument is needed to specify their size). The inner product of two arrays A and B with N elements is a scalar value c defined as follows: c = A middot B sigma_i = 0^N - 1 A(i) B(i) = A(0)B(0) + A(1)B(1) + ... + A(N - 1) B(N - 1), where A(i) and B(i) are the i th elements of arrays A and B, respectively. For example, the inner product of A = (1, 2) and B = (3, 3) is c_1 = 9; and the inner product of C = (2, 5, 4, -2, 1) and D = (3, 4, 2, 0, 2) is c_2 = 36. You must use the following function prototype: int innerProduct(int A[], int B[], int size);Explanation / Answer
libvector.h:
#include <stdio.h>
int innerProduct(int A[],int B[],int size);
libvector.c:
int innerProduct(int A[],int B[],int size)
{
int sum=0,i;
for(i=0;i<size;i++)
{
sum+=A[i]*B[i];
}
return sum;
}