int main()
{
char arr[5] = {112,151,156,147,154,145}; //That is the word 'Jingle'
//Make the 4 other arrays required.
//and then a simple
x = 0;
while(x < 5)
{
cout << arr[x];
}
cout << " ";
x = 0;
//same loop but output 'bells\n'
That code above took me about 3 minutes to type out (most of that time looking for the correct ascii code). I would be surprised if it took more than 15 minutes to do this and no -one would bother looking up the char array codes to see what the output was going to be.