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_04/Soln20_04.cpp:50–55 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
48
}
49
50
void printVector(std::string_view message, const std::vector<int>& numbers)
51
{
52
std::cout << message <<
": "
;
53
for (int number : numbers) std::cout << number <<
' '
;
54
std::cout << std::endl;
55
}
Callers
1
main
Function · 0.70
Calls
no outgoing calls
Tested by
no test coverage detected