Y
Hacker News
new
|
ask
|
show
|
jobs
by
cron
5450 days ago
Cute way to reverse a string, taken from the K+R:
for (i = 0, j = strlen(s)-1; i < j; i++, j--) c = s[i], s[i] = s[j], s[j] = c;