|
|
|
|
|
by PassTheAmmo
5808 days ago
|
|
I had to try it just because I wanted to know. With -Wall GCC says:
pquest.c:279: warning: operation on 'fp' may be undefined Not sure what 'may' means though EDIT: So to clarify, my suspicion is that the expression could mean either: 1) *fp = *fp >> 4;
*fp++;
or2) *fp = *(fp+1) >> 4;
*fp++;
|
|