What is the string handling functions present in header file <string.h>?

There are number of string handling functions present in string.h. In other words if a programmer uses any of the function present in string.h then they must include the header file as



#include <string.h>



Some of the functions present in <string.h> are given below:



strcat() - This function present in string.h is used to con concatenate two strings.

strcmp() – This function is used to compare two strings.

strcpy() – this function present in string.h is used to copy the second string given as second parameter to this function into first string.

strlen() – this function is used to length of the string in other words the number of characters present in string .

strstr() – This function is to obtain the first occurrence of substring in a string .



There are numerous string handling functions present in string.h and the above mentioned are some of the functions.

Questions by GeekAdmin   answers by GeekAdmin

Showing Answers 1 - 3 of 3 Answers

rajukumar

  • Jan 10th, 2007
 

the string handling functions present in are

strcmp()

strcpy()

strconcat()

strlen()

strev()

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions