Comment on Ask HN: Favorite pointer tricks in C?Comments−zeraholladay15yCopy a string in one line: while (*dst++ = *src++);
Comments
Copy a string in one line: