[Solved] c++ using stl vector [closed]
[ad_1] Every #include directive including something from the C++ standard library “loads” the entities into the std namespace (or some other namespace like this). The namespace helps preventing global namespace pollution – by keeping everything in a seperate namespace, identifier collisions are rendered impossible. In the <vector> file, then there is something like namespace std … Read more