Example 3. C Code for Interlist Illustration

int copy (char *str, const char *s, int n) { int i; for (i = 0; i < n; i ++) *str++ = *s++; }