Home » C Programming » Pointers » Question
  1. What will be the output of the following C code?
     #include <stdio.h>
    void main()
    {
    char ch[12][14] = {"India", "Hindusatan", "Bharat"};
    printf("%p\n", ch);
    printf("%p", ch[0]);
    }
    1. India
    2. Hindusatan
    3. Bharat
    4. Same memory address
    5. Different memory address
Correct Option: D

Same memory address



Your comments will be displayed only after manual approval.