strcpy( char *target, const char *source )strcpy copies from one string to another.
char *strcpy( char *target, const char *source )
{
char *p = target;
while ( *p = *source ) {
source++;
p++;
}
return target;
}
TOC |
Prev
|
Next