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));
}

A. 80
B. Interview
C. Mania
D. World
E. None of these
Answer» B. Interview


Discussion

No Comment Found