1.

An array of strings can be initialized by _________

A. char *a[] = {“Hello”, “World”};
B. char *a[] = {“Hello”, “Worlds”};
C. char *b = "Hello";char *c = "World";char *a[] = {b, c};
D. All of the mentioned
Answer» E.


Discussion

No Comment Found