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

A. Interveiw
B. Mania
C. World
D. All of above
E. None of these
Answer» D. All of above


Discussion

No Comment Found