#include #include using namespace std; struct channelGuideType { int channelNumber; char chAbbrev[6]; char chFullName[40]; }; struct channelGuideType chGuide[57]; // This is a Global Variable!!! int main() { chGuide[10].channelNumber = 22; strcpy(chGuide[10].chAbbrev, "TWC"); strcpy(chGuide[10].chFullName, "The Weather Channel"); cout << "The 10th channel number is " << chGuide[10].channelNumber << endl; cout << "The 10th channel Abbreviation is " << chGuide[10].chAbbrev << endl; cout << "The 10th channel full name is " << chGuide[10].chFullName << endl; return 0; }