Jump to

v01-l1-standard

How can one use a function from the standard library of C++ ?

???

Some functions and classes of the standard library are not included by default, such as vector. In this case writing std::vector(...) doesn't suffice to use the class. One needs to add #include <vector> as well.