Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Apress/beginning-cpp20
/ max_word_length
Function
max_word_length
Examples/NoModules/Chapter 08/Ex8_17.cpp:87–93 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
85
}
86
87
size_t max_word_length(const Words& words)
88
{
89
size_t max {};
90
for (auto& pword : words)
91
if (max < pword->length()) max = pword->length();
92
return max;
93
}
94
95
void show_words(const Words& words)
96
{
Callers
1
show_words
Function · 0.70
Calls
no outgoing calls
Tested by
no test coverage detected