1.

What will be the output of the following C code?
#include <stdio.h>
int main()
{
char str[12][16] = {"Interview", "Mania"};
printf("%d", sizeof(str));
return 0;
}

A. Interview
B. Mania
C. 192
D. Garbage value
E. None of these
Answer» D. Garbage value


Discussion

No Comment Found