+1 vote
in Class 12 by kratos

To declare an array * that holds a 5-character string, you would write

(A) char *[5]

(B) String *[5]

(C) char *[6]

(D) String *[6]

1 Answer

+3 votes
by kratos
 
Best answer

Correct option -**(A) char [5]*

Explanation:-

A string is nothing but a char array.

...