1.

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

A. 8 16
B. Compilation Error
C. Interview Mania
D. 16 8
E. None of these
Answer» E. None of these


Discussion

No Comment Found