#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?
Answer Posted / guest
6
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
how can use subset in c program and give more example
What are the disadvantages of c language?
Why c is faster than c++?
Can a file other than a .h file be included with #include?
Do you know the purpose of 'register' keyword?
What is meant by initialization and how we initialize a variable?
What is the significance of c program algorithms?
What is hungarian notation? Is it worthwhile?
What does %p mean?
What do you mean by recursion in c?
write a c program in such a way that if we enter the today date the output should be next day's date.
What is use of #include in c?
What is the difference between fread and fwrite function?
Why pointers are used in c?
Function calling procedures? and their differences? Why should one go for Call by Reference?