Advertisements
Advertisements
Question
Explain any four standard library functions from sting.h ?
Solution
Standard Library Functions from string.h :-
In the C Programming Language, the Standard Library Functions are divided into several header files.
The following is a list of functions found within the <string.h> header file:
I. Comparison functions
1. memcmp - Compare Memory Blocks
2. strcmp - String Compare
3. strcoll - String Compare Using Locale-Specific Collating
sequence.
4. strncmp - Bounded String Compare
5. strxfrm - Transform Locale-Specific String
II. Concatenation functions
1. strcat - String Concatenation
2. strncat - Bounded String Concatenation
III. Copying functions
1. memcpy - Copy Memory Block
2. memmove - Copy Memory Block
3. strcpy - String Copy
4. strncpy - Bounded String Copy
IV. Search functions
1. memchr - Search Memory Block for Character
2. strchr - Search String for Character
3. strcspn - Search String for Intial Span of Characters Not in Set
4. strpbrk - Search String for One of a Set of Characters
5. strrchr - Search String in Reverse for Character
6. strspn - Search String for Initial Span of Characters in Set
7. strstr - Search String for Substring
8. strtok - Search String for Token
V. Miscellaneous functions
1. memset - Initialize Memory Block
2. strerror - Convert Error Number to String
3. strlen - String Length
APPEARS IN
RELATED QUESTIONS
What do you mean by file? What are the different functions available to read data from file? Specify the different modes in which file can be opened along with syntax.
Select the correct option from multiple choice question.
Which bitwise operator is used to multiply the number by 2n where n isnumber of bits.
Select the correct option from multiple choice question.
Which operator has the lowest priority?
State True or False with reason.
A function can have any number of return statements.
State True or False with reason.
Comments in the program make debugging of the program easier.
Write a menu driven program to perform arithmetic operations on two integers. The menu should be repeated until user selects “STOP” option. Program should have independent user defined functions for each case.
Enlist bitwise operator in c language. Explain any 2 with examples.