Hi there,

I have something like:

Code:
char * array = { "abc", "def", "ghi", "abc" };
I want to remove duplicates from this array of pointers. So that "abc" is only mentioned once. How can I accomplish this?

Thank you.