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