If the size of pointer is 4 bytes then What will be the output of the program ?
#include
int main()
{
char *str[] = {"Frogs", "Do", "Not", "Die", "They", "Croak!"};
printf("%d, %d", sizeof(str), strlen(str[0]));
return 0;
}
Answer: C
No answer description available for this question.