Explain what standard functions are available to manipulate strings?



Explain what standard functions are available to manipulate strings?..

Answer / Nuzaht Be

Standard C libraries offer a variety of string handling functions, including strcmp(), strlen(), strcpy(), strcat(), memset(), memcpy(), and many more. These functions facilitate tasks like comparing, copying, concatenating, searching, and clearing strings.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

write a c program to print the next of a particular no without using the arithmetic operator or looping statements?

2 Answers   TCS,


write a program to convert a expression in polish notation (postfix) to inline (normal)

0 Answers   Siemens,


All technical questions

1 Answers   TCS,


A marketing company wishes to construct a decision table to decide how to treat clients according to three characteristics: Gender, City Dweller, and age group: A (under 30), B (between 30 and 60), C (over 60). The company has four products (W, X, Y and Z) to test market. Product W will appeal to female city dwellers. Product X will appeal to young females. Product Y will appeal to Male middle aged shoppers who do not live in cities. Product Z will appeal to all but older females.

2 Answers  


Why structure is used in c?

1 Answers  


Is c weakly typed?

1 Answers  


a=(1,2,3); b=1,2,3; c=1,(2,3); d=(1,2),3; what's the value of 'a','b','c','d'

2 Answers  


If I have a char * variable pointing to the name of a function ..

1 Answers  


Why header files are used?

1 Answers  


How to write in a function declaration and in function call in which the function has 'n' number of varible or arguments?

2 Answers  


Can the size of an array be declared at runtime?

1 Answers  


What is the difference between struct and union in C?

2 Answers  


Categories