What are the string functions? List some string functions available in c.



What are the string functions? List some string functions available in c...

Answer / Balram Sarkar

String functions in C help manipulate strings. Some common ones include: strcmp() for comparing strings, strlen() for getting the length of a string, strcpy() and strcat() for copying and concatenating strings respectively.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()

1 Answers  


What is a sequential access file?

1 Answers  


How can I access memory located at a certain address?

3 Answers   Verizon,


What does c mean?

1 Answers  


Who is the founder of c language?

1 Answers  


What does == mean in texting?

1 Answers  


Define VARIABLE?

1 Answers   ADP,


How can you find the exact size of a data type in c?

1 Answers  


main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }

4 Answers   Vector,


#include<stdio.h> int main() { int a[3][3][2]= {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18}; printf("%d\n",*(*(*a+1)); return 0; } What will be the output of the above question? And how?

1 Answers   Groupon,


a linear linked list such that the link field of its last node points to the first node instead of containing NULL a) linked list b) circular linked list c) sequential linked list d) none

0 Answers  


How can you avoid including a header more than once?

1 Answers  


Categories