You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
dereferencing takes precedence over addition, so "*data+1" is really "data[0]+1" rather than data[1].
(incrementing has precedence over dereferencing, so "*data++" works as "data[0]; data++")
0 commit comments