Stl - standard template library

The STL in C++ provides a powerful set of template classes to provide general-purpose classes and functions with templates that implement many popular and commonly used algorithms and data structures like vectors, lists, and queues.


  #include 
  vector v = {1, 2, 3};
  

Beginner's Guide to C++