Explain what standard functions are available to manipulate strings?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What are pointers? Why are they used?

0 Answers  


write a program for fibonaci series by using while loop in c?

2 Answers  


What is the difference between far and near ?

0 Answers  


What is s in c?

0 Answers  


in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?

2 Answers   NetApp,


What is the output from this program? #include <stdio.h> void do_something(int *thisp, int that) { int the_other; the_other = 5; that = 2 + the_other; *thisp = the_other * that; } int main(void) { int first, second; first = 1; second = 2; do_something(&second, first); printf("%4d%4d\n", first, second); return 0; }

3 Answers  


What is abstract data structure in c?

0 Answers  


Explain how do you search data in a data file using random access method?

0 Answers  


Differentiate b/w Modify and Update commands giving example.

1 Answers  


Write a program to write a given string in maximum possibilities? i.e str[5]="reddy"; i.e we can write this string in 120 ways for that write a program

3 Answers   Subex,


a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above

0 Answers  


WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..

0 Answers  


Categories