#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
Distinguish between actual and formal arguments.
Can you please explain the difference between syntax vs logical error?
What is the use of function overloading in C?
I came across some code that puts a (void) cast before each call to printf. Why?
Can you please explain the difference between strcpy() and memcpy() function?
write a program to find out prime number using sieve case?
Why do we use pointer to pointer in c?
Is javascript based on c?
List some of the dynamic data structures in C?
Differentiate between ordinary variable and pointer in c.
Explain the difference between exit() and _exit() function?
What is time null in c?
Was 2000 a leap year?
What is the explanation for the dangling pointer in c?
Do you know pointer in c?