Solved

Given a Built-In Array of Ints Named Values, Which of the Following

Question 19

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:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions