#include using namespace std; struct WordT { string word = {""}; size_t count{0}; }; void PrintWord(WordT entry); int main() { WordT a{"hello"}; WordT b{.count = 8}; PrintWord(a); PrintWord(b); return 0; } void PrintWord(WordT entry) { cout << "Word = " << entry.word << endl; cout << "Count = " << entry.count << endl; }