MCPcopy Create free account
hub / github.com/Apress/beginning-cpp20 / printVector

Function printVector

Examples/Modules/Chapter 20/Ex20_13A/Ex20_13A.cpp:32–36  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

30}
31
32void printVector(const std::vector<int>& v)
33{
34 for (auto i : v) std::cout << i << ' ';
35 std::cout << std::endl;
36}

Callers 1

mainFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected