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 |
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()
What is a sequential access file?
How can I access memory located at a certain address?
What does c mean?
Who is the founder of c language?
What does == mean in texting?
Define VARIABLE?
How can you find the exact size of a data type in c?
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); }
#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?
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
How can you avoid including a header more than once?