A specific version of a function template created for a particular data type is referred to as a template _______.
- instantiation
- function
- specification
- meta-function
When a function template is used with a specific data type, the compiler creates a version of that function for the given type. This specific version is known as a template instantiation.
Loading...
Related Quiz
- In C++ STL, the function _______ is used to remove consecutive duplicate elements in a range.
- Which keyword is used to define a function in C++?
- What happens if an exception is thrown but not caught in a C++ program?
- Which standard library provides predefined exception classes in C++?
- To prevent memory leaks, every call to new should be matched with a call to _______.