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

Function printVector

Examples/Modules/Chapter 20/Ex20_13B/Ex20_13B.cpp:33–37  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 1

mainFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected