What is a parameterized type?
Answer / beena
A template is a parameterized construct or type containing generic code that can use or manipulate any type. It is called parameterized because an actual type is a parameter of the code body. Polymorphism may be achieved through parameterized types. This type of polymorphism is called parameteric polymorphism. Parameteric polymorphism is the mechanism by which the same code is used on different types passed as parameters.
Is This Answer Correct ? | 0 Yes | 0 No |
what is the use of templates?
What is runtime errors c++?
Is c better than c++?
What is array give example?
How is memory managed in C++?
Can you pass an array to a function in c++?
What is split a string in c++?
Explain RAII (Resource Acquisition Is Initialization).
How many keywords are used in c++?
In int main(int argc, char *argv[]) what is argv[0] a) The first argument passed into the program b) The program name c) You can't define main like that
What is flush c++?
What are the vectors in c++?