#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
What is actual argument?
What is the equivalent code of the following statement in WHILE LOOP format?
What are qualifiers in c?
What does p mean in physics?
What is header file in c?
How to draw the flowchart for structure programs?
Is it possible to have a function as a parameter in another function?
Do variables need to be initialized?
Explain how can I avoid the abort, retry, fail messages?
Why is c called c not d or e?
What is a #include preprocessor?
What is the purpose of main( ) in c language?
How to write c functions that modify head pointer of a linked list?
What is getch?
How do you initialize pointer variables?