#include #include "WordT.h" #include using namespace std; int main() { WordT entry; WordT otherEntry; cout << "Making a simple word, should be simple, 1" << endl; entry = MakeWordT("simple"); PrintWordT(entry); cout << endl; cout << "Making a simple word, should be thunderd, 1" << endl; entry = MakeWordT("Thunder'd"); PrintWordT(entry); cout << endl; cout << "Combining two words, simple 1" << endl; otherEntry = entry; CombineWordT(entry, otherEntry); PrintWordT(entry); cout << endl; cout << "Combining two words, simple 2 and hello 1" << endl; otherEntry.word = "hello"; CombineWordT(entry, otherEntry); PrintWordT(entry); return 0; }