Given this loop, why is there a semi colon at the end?
for(s = string; *s == ' '; s++)
;
thanks
edit * so is it possible to reverse this procedure so it starts at the end of a string and checks for a space and decreases until it finds a charachter?