So I have a code, where first I tried an finde the duplicates and then I need to count them and give them out put every single one. For example is my int src {5, 3, 5, 4, 4, 5} my output should as followed: Number of Duplicates: 5 5,5,4,4,5
This is my code:
#include <stdio.h>
#include...