Hello Everyone,
I found the following code somewhere, I understand it but I have trouble with understanding the sequence of execution, in other word, How can I monitor every little step of the function like that?
void EatSpace(char* Pbuffer)
{
int i = 0;
int j = 0;
while((*(Pbuffer + i) = *(Pbuffer + j++)) != '\0')
if (*(Pbuffer + i) != ' ')
i++;
}