vBulletin Search Engine Optimization
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| On Friday 13 February 2004 17:32, Ed White wrote: > if (place[1] != '\0' && *++place == '-' && place[1] == '\0') { Little note: the code works only if the compiler build the executable keeping the same checks order 1) place[1] != '\0' 2) *++place == '-' 3) place[1] == '\0' I've always read that it shouldn't be trusted so much... Ed |