What is the Standard Template Library?
Answer / nimish singh
A library of container templates approved by the ANSI committee for inclusion in the standard C++ specification.
A programmer who then launches into a discussion of the generic programming model, iterators, allocators, algorithms, and such, has a higher than average understanding of the new technology that STL brings to C++ programming.
| Is This Answer Correct ? | 0 Yes | 0 No |
How do I download c++?
Why is main function important?
Which one is a preferred language C or C++? Why?
Are strings immutable in c++?
Differentiate between late binding and early binding.
catch(exception &e) { . . . } Referring to the sample code above, which one of the following lines of code produces a written description of the type of exception that "e" refers to? a) cout << e.type(); b) cout << e.name(); c) cout << typeid(e).name(); d) cout << e.what(); e) cout << e;
What is private public protected in c++?
What operators can you overload in c++?
What are 2 ways of exporting a function from a dll?
What does the ios::ate argument do?
Is c++ the hardest language?
Carry out conversion of one object of user-defined type to another?