Multiple Choice
Which of the following statements appropriately defines a C-string that stores names of up to 25 characters?
A) char name[25];
B) string name[25];
C) char name[26];
D) string name[24];
E) None of these
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q10: In C++ a C-string is a sequence
Q11: The function that accepts a C-string as
Q12: To determine whether a character entered is
Q13: The function that accepts pointers to two
Q14: The string class's front and back member
Q16: What is the result after the following
Q17: The isdigit function will return true if
Q18: If an uppercase character is passed as
Q19: The strlen function returns a C-string's length
Q20: In C++11, assuming mychar is a char