#include "header.h" #include using namespace std; void GetInput(char s1[], char s2[], int& amt) { cout << "Input the first stirng: "; cin >> s1; cout << "Input the second string: "; cin >> s2; cout << "How many charcters to compare: "; cin >> amt; } bool Compare(char s1[], char s2[], int n) { for (int i = 0; i < n; i++) { if (!(s1[i] == s2[i])) { return false; } } return true; }