Multiple Choice
Given a built-in array of ints named values, which of the following statements would sort the array?
A) sort(values.begin() , values.end() ) ;
B) sort(values.array_begin() , values.array_end() ) ;
C) sort(begin(values) , end(values) ) ;
D) sort(array_begin(values) , array_end(values) ) ;
Correct Answer:

Verified
Correct Answer:
Verified
Q14: All of the following can cause a
Q15: Pointers may be assigned which of the
Q16: Consider the following function: void reverse(char *string1,
Q17: Which of the following gives the number
Q18: getline(superstring, 30); is equivalent to which of
Q20: Which of the following is not a
Q21: A function that prints a string by
Q22: Three of the following expressions have the
Q23: Which statement would be used to declare
Q24: Pointers cannot be used to:<br>A) Contain memory