Examveda

What will be the output of the following C code?
#include <stdio.h>
void main()
{
    char *a[3][3] = {{"hey", "hi", "hello"}, {"his", "her", "hell"}
    , {"hellos", "hi's", "hmm"}};
    printf("%s", a[1][1]);
}

A. her

B. hi

C. Compile time error

D. hi's

Answer: Option A


This Question Belongs to C Program >> Structure And Union

Join The Discussion

Related Questions on Structure and Union