#include #include void chorus(); //The function declaration announces the name of the function. int main() { chorus() cout << "Hear the children crying (One Love)\n" << "Hear the children crying (One Heart)\n" << "Saying give thanks and praise to the Lord and I will feel all right Saying let's get together and feel all right\n" << "Odds are he won't live to see tomorrow.\n\n"; chorus(); //Call the function. cout << "Let them all pass all their dirty remarks (One Love) There is one question I'd really\n" << "like to ask (One Heart) Is there a place for the hopeless sinner Who has hurt all\n" << "mankind just to save his own?\n" << "Believe me.\n\n"; chorus(); cout << "As it was in the beginning (One Love)\n" << "So shall it be in the end (One Heart)\n" << "Give thanks and praise to the Lord and I will feel all right One more thing\n" cout << "Let's get together to fight this Holy Armageddon (One Love) So when the Man" << "comes there will be no no doom (One Song) Have pity on those whose chances" << "grove thinner There ain't no hiding place from the Father of Creation" chorus(); return EXIT_SUCCESS; } void chorus() //The function definition creates the function. { cout << "\tOne Love, One Heart\n" << "\tLet's get together and feel all right\n\n"; } //Don't need the keyword "return" here.