#include <string.h> char *strcpy(char *s1, const char *s2);
This function copies s2 into s1.
s1
ANSI, POSIX
char buf[100]; strcpy(buf, arg);
Go to the first, previous, next, last section, table of contents.