Mention four important string handling functions in c languages .
No Answer is Posted For this Question
Be the First to Post Answer
What is ponter?
. Explain the differences between fork() and exec() in C
How can I pad a string to a known length?
What is the difference between typeof(foo) and myFoo.GetType()?
1 232 34543 4567654 can anyone tell me how to slove this c question
a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f
Why pointers are used?
write a program to find out prime number using sieve case?
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?
wat is the difference between array and pointer?
how to print 2-D array using a single for loop?
2 Answers Mind Tree, TCS, Value Labs,
#include<std.h> int main() { char *str[]={"Frogs","Do","Not","Die","They","Croak!"}; printf("%d %d\n",sizeof(str),strlen(str)); ...return 0; } what will the output of the above program?