diff --git a/Remove Duplicates From Sorted Strings.c b/Remove Duplicates From Sorted Strings.c new file mode 100644 index 0000000..a8b6576 --- /dev/null +++ b/Remove Duplicates From Sorted Strings.c @@ -0,0 +1,48 @@ +#include +void remDuplicates(char *str) +{ +int x = strlen(str),temp,count=0; + int i,j; + /*for(i=0;i