In this example, we insert three integers (10, 20, 30) into an empty list using push_back() method. Then we iterate over the list and print each element. The output of this program should be: 10 20 30 Package library: STL (Standard Template Library) Example 2:c++ #include