How might I write an implementation in C of the standard library function strcpy
? Here's how I might.
Strings: Copying
#include <stdio.h>
char *mystrcpy(char *dst, const char *src)
{
char *start = dst;
do {
*dst++ = *src;
} while ( *src++ );
return start;
}
int main (void)
{
char text[12];
puts(mystrcpy(text, "Hello world"));
return 0;
}
/* my output
Hello world
*/
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.