#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 to draw the flowchart for structure programs?
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?
write a program to copy the string using switch case?
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
Why is it important to memset a variable, immediately after allocating memory to it ?
An instruction which is analysed and acted upon by the processor prior to the compiler going its work a) directive b) constructive c) constant d) absolute mode
Compare interpreters and compilers.
In c language can we compile a program without main() function?
How are 16- and 32-bit numbers stored?
What are types of functions?
What do you know about the use of bit field?
Is there a way to switch on strings?
regarding pointers concept
Can a local variable be volatile in c?
What's the difference between constant char *p and char * constant p?