The following code declares and initializes an array of character strings to hold the list of channel names for Project 4. Feel free to copy and paste if you like. The identifiers NumCh and MaxLen are declared as constants in my program. I leave it to you to decide what the values should be. const char Channel[NumCh][MaxLen] = {"", // 0 "", // 1 "", // 2 "WB", // 3 "NBC", // 4 "CBS", // 5 "TBS", // 6 "HSN", // 7 "FOX", // 8 "C-SPAN", // 9 "WPXR", //10 "QVC", //11 "PBS", //12 "ABC", //13 "UPN", //14 "NASA", //15 "PIN", //16 "ESPN", //17 "TNT", //18 "HTS", //19 "CNN", //20 "CNNHL", //21 "CNBC", //22 "Weather", //23 "USA", //24 "FX", //25 "NICK", //26 "DISC", //27 "FAM", //28 "NASH", //29 "CMT", //30 "MTV", //31 "VH-1", //32 "BET", //33 "BRAVO", //34 "A&E", //35 "AMC", //36 "LIFE", //37 "TRAVEL", //38 "INT", //39 "HIST", //40 "TLC", //41 "SCI-FI", //42 "Comedy", //43 "ESPN2", //44 "TCM" //45 };