Q26
How do you declare a string in C that can store up to 50 characters?
A.
string str[50];
B.
char str[50];
AnswerC.
char[] str = "50";
D.
string = 50;
Answer: Option B
Solution
Answer: Option B
No explanation is given for this question Let's Discuss on Board