What do C++20 concepts improve?
- A Template error messages and the ability to constrain template parameters
- B Runtime performance of virtual calls
- C Memory allocation speed
- D Thread scheduling
Answer
Template error messages and the ability to constrain template parameters
Concepts express requirements on template arguments explicitly, so a violation is reported clearly instead of deep inside instantiation.





