#pragma once #include using namespace std; //10a // 9.4 Learn by Doing Exercises //function getName prototype //void getName(char first[], char last[]); //function formatName prototype //void formatName(char first[], char last[]); //10b //9.5 Learn by Doing Exercises //function getStrings prototype void getStrings(char firstString[], char secondString[]); //functioncompareStrings prototype void compareStrings(char firstString[], char secondString[]);