1.

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; }

A. 22, 4
B. 25, 5
C. 24, 5
D. 20, 2
Answer» D. 20, 2


Discussion

No Comment Found