You are viewing a single comment's thread. Return to all comments →
I'm curious about int chr = (*a++) - 'a'; this line. Does it guarantee it'll minus 'a' first then do increment?
int chr = (*a++) - 'a';
I mean does it really means:
int chr = *a - 'a'; *a++;
or it'll sometime be:
int chr = (*a + 1) - 'a';
Seems like cookies are disabled on this browser, please enable them to open this website
Sorting Array of Strings
You are viewing a single comment's thread. Return to all comments →
I'm curious about
int chr = (*a++) - 'a';
this line. Does it guarantee it'll minus 'a' first then do increment?I mean does it really means:
or it'll sometime be: