top | item 2783150

(no title)

cron | 14 years 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;

discuss

order

No comments yet.