How do I begin to attempt to use linked lists to solve this? here…
Question Answered step-by-step How do I begin to attempt to use linked lists to solve this? here… Image transcription textYour task is to add code to this function in prac_q4.c: // product should return the sum of the elements in List1multiplied by // the corresponding element in List2 // if one List is Longer than the other, the extra Listelements are ignored int product (struct node *head1, struct node *head2) { // PUT YOUR CODE … Show more… Show moreHow do I begin to attempt to use linked lists to solve this?here is the starter code below to help, I need help creating the function int product to solve this problem: #include


