Home » C Programming » Pointers » Question
  1. What will be the output of the following C code?
    #include <stdio.h>
    void main()
    {
    char num[15][20] = {"Interveiw", "Mania", "World"};
    printf("%s", num[2]);
    }
    1. Interveiw
    2. Mania
    3. World
    4. All of above
    5. None of these
Correct Option: C

World



Your comments will be displayed only after manual approval.