Here is the defintion of my function:
char *strsub(char const *s, unsigned int start, size_t len){
blabla
blabla
while (len > 0)
{
len--;
cpy[start++] = s[start++];
}
}
When I try to compile I get this error:
error : multiple unsecquenced modifications to start -Werror , -Wunsequenced
I don't understand that error at all.