Strip White Space from a given sting

Write a function to stip all whitespace from a given string

Strip White Space from a given sting

int stripSpaces(char *s, int len)
{
for(int i=0,j=0; i

Strip White Space from a given sting

have u really answered to the above question????

Strip White Space from a given sting

[code:1]int unique(int * arr, int len)
{
int uniqueLen=0;
for(int i=0,j=1; i=len)
{
break;
}
}
arr[i+1]=arr[j];
}
return uniqueLen;
}[/code:1]