Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Apress/beginning-cpp20
/ printVector
Function
printVector
Exercises/Modules/Chapter 20/Soln20_06/Soln20_06.cpp:46–51 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
44
}
45
46
void printVector(std::string_view message, const std::vector<int>& numbers)
47
{
48
std::cout << message <<
": "
;
49
for (int number : numbers) std::cout << number <<
' '
;
50
std::cout << std::endl;
51
}
Callers
1
main
Function · 0.70
Calls
no outgoing calls
Tested by
no test coverage detected