Schlemiel the Painter's algorithm: Difference between revisions

Content deleted Content added
Wookie2u (talk | contribs)
Line 28:
}
// append the source string to the destination string
whilefor( ; *dest=*src); {dest++,src++);
dest++ = src++;
}
// null terminate the destination string
dest = '\0';