C++20 sections · 1024 units
Open in Course

Quiz: min_element Usage

Knowledge check

Check Your Understanding

How do you get the actual value (not iterator) of the minimum element in vector v?

  1. A.min_element(v.begin(), v.end())
  2. B.min_element(v)
  3. C.*min_element(v.begin(), v.end())
  4. D.v.min_element()
Start the roadmap to answer the quizzes and solve the challenges