Top

Discussion

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: C

No answer description available for this question.

No comment is present. Be the first to comment.
Loading…

Post your comment