Q173
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};
char *c = "World";
char *a[] = {b, c};
D.
all of the mentioned
AnswerAnswer: Option D
Solution
Answer: Option D
No explanation is given for this question Let's Discuss on Board