1.

What will be the output of the following C code?
#include <stdio.h>
void main()
{
char *ch[20] = {"Hey", "How", "Hope"};
printf("%d n", sizeof(ch[10]));
}

A. Hey
B. How
C. 8
D. Hope
E. None of these
Answer» D. Hope


Discussion

No Comment Found