1.

An array of strings can be initialized by _________.

A. <pre class="prettyprint lang-c">char *ch1 = "Interview";<br>char *ch2 = "Mania";<br>char *ch3[] = {ch1, ch2};<br></pre>
B. char *ch[] = { Interview , Mania };
C. char *a[] = { Interview , Mania };
D. All of above
E. None of these
Answer» E. None of these


Discussion

No Comment Found