1.

What will be the output of the following C code? #include <stdio.h> void main() { char ch[12][14] = {"India", "Hindusatan", "Bharat"}; printf("%p n", ch); printf("%p", ch[0]); }

A. India
B. Hindusatan
C. Bharat
D. Same memory address
E. Different memory address
Answer» E. Different memory address


Discussion

No Comment Found