Examveda
Examveda

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: Option D


This Question Belongs to C Program >> Pointer

Join The Discussion

Related Questions on Pointer