Home » C Programming » Pointers » Question
  1. What will be the output of the following C code?
    #include <stdio.h>
    void main()
    {
    char *ch[10] = {"Interview", "Mania", "World"};
    printf("%d\n", sizeof(ch));
    }
    1. 80
    2. Interview
    3. Mania
    4. World
    5. None of these
Correct Option: A

80



Your comments will be displayed only after manual approval.