Multiple Choice
Which of the following is false for pointer-based strings?
A) A string may include letters, digits and various special characters (i.e., +, -, *) .
B) A string in C++ is an array of characters ending in the null character ('\0') .
C) String literals are written inside of single quotes.
D) A string may be assigned in a declaration to either a character array or a variable of type char *.
Correct Answer:

Verified
Correct Answer:
Verified
Q1: Comparing pointers and performing pointer arithmetic on
Q2: A pointer can not be assigned to:<br>A)
Q3: A function that modifies an array by
Q4: A string array:<br>A) Stores an actual string
Q5: Given that k is an integer array
Q7: Which of the following is false about
Q8: Which of the following best describes the
Q9: Assuming that t is an array and
Q10: (*max)(num1, num2, num3);:<br>A) Is the header for
Q11: The & operator can be applied to:<br>A)