// File: CST116-Lab_5.h // Summary: A compilation of header files for Lab 5 // Author: Logan Billingsley // Date: 11/2/2021 #include #include using namespace std; // 9b -- 10.6 Learn by Doing Exercises /* const int SIZE = 10; void GetScores(float[]); void DisplayScores(float scores[], int&, int&, int&, int&, int&); void DisplayTotals(int, int, int, int, int); */ // 10a -- 10.7 Learn by Doing Exercies 2 /* const int SIZE = 20 + 1; void GetNames(char[], char[]); void FullName(char[], char[], char[]); void PrintName(char[]); */ // 10b -- 10.8 Exercies 7 /* const int SIZE = 20 + 1; void GetString1(char[]); void GetString2(char[]); void CompareStrings(char[], char[]); */