Pleaseinclude explanations.
Question 13 [10 Marks] The following C structure is used to define each node in a linked list: typedef struct node ( int data; struct node link; Node; Write a C function called printDuplicates that receives a pointer to the first node (head) of a linked list as a parameter. The function should find and print the duplicate integers in the linked list. For example, if the linked list contains the integers 6,
OR
OR