strcpy (9) - Linux Manuals
strcpy: Copy a NUL terminated string
Command to display strcpy
manual in Linux: $ man 9 strcpy
NAME
strcpy - Copy a NUL terminated string
SYNOPSIS
-
char * strcpy(char * dest, const char * src);
ARGUMENTS
dest
-
- Where to copy the string to
src
-
Where to copy the string from
COPYRIGHT
Pages related to strcpy
- strcpy (3) - copy a string
- strcpy (3p) - copy a string
- strcat (9) - Append one NUL-terminated string to another
- strchr (9) - Find the first occurrence of a character in a string
- strchrnul (9) - Find and return a character in a string, or end of string
- strcmp (9) - Compare two strings
- strcspn (9) - Calculate the length of the initial substring of s which does not contain letters in reject
- strim (9) - Removes leading and trailing whitespace from s.