strcat (9) - Linux Manuals
strcat: Append one NUL-terminated string to another
Command to display strcat
manual in Linux: $ man 9 strcat
NAME
strcat - Append one NUL-terminated string to another
SYNOPSIS
-
char * strcat(char * dest, const char * src);
ARGUMENTS
dest
-
- The string to be appended to
src
-
The string to append to it
COPYRIGHT
Pages related to strcat
- strcat (3) - concatenate two strings
- strcat (3p) - concatenate two strings
- 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
- strcpy (9) - Copy a NUL terminated string
- 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.