Vidyalelo
C Programming · Q173

Pointer

Programming · C Programming · question 173

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};
D.
all of the mentioned
Answer

Answer: Option D

Solution

Answer: Option D
No explanation is given for this question Let's Discuss on Board