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 |
write a c program to print the next of a particular no without using the arithmetic operator or looping statements?
write a program to convert a expression in polish notation (postfix) to inline (normal)
All technical questions
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.
Why structure is used in c?
Is c weakly typed?
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'
If I have a char * variable pointing to the name of a function ..
Why header files are used?
How to write in a function declaration and in function call in which the function has 'n' number of varible or arguments?
Can the size of an array be declared at runtime?
What is the difference between struct and union in C?