mention any four string.h function
Answers
Answered by
0
Answer:
strlen(),strcpy(),strncpy(),strcat(),strncat()
Answered by
1
Answer:
Function Use
strlen calculates the length of string
strcat Appends one string at the end of another
strncat Appends first n characters of a string at the end of another
strcpy Copies a string into another
Explanation:
Similar questions