discuss all types of string manipulation function available in c language.
Answers
Answered by
4
Answer:
The nine most commonly used functions in the string library are:
strcat - concatenate two strings.
strchr - string scanning operation.
strcmp - compare two strings.
strcpy - copy a string.
strlen - get string length.
strncat - concatenate one string with part of another.
strncmp - compare parts of two strings.
Similar questions