Home >>C String functions
Parameter | Description |
---|---|
strlen() | It returns the total length of the given string. |
strcat() | It is used to concatenate two string. |
strcmp() | It compares two string and return 0 if both strings are equal. |
strcpy() | It copy contents of one string to another string. |
strdup() | It is used to duplicate the given String. |
strlwr() | It converts the given string in lowercase. |
strncat() | It is used to concatenate portion of one string at the end of another string. |
strrev() | It is used to reverse the given string. |
strset() | It sets all the characters in a string to given character. |
strupr() | It converts the given string into uppercase. |