#include "Header1.h" void GetInput(char input_1[], char input_2[]) { cout << "This program checks if the first six characters in a string are the same.\n"; cout << "Please enter your first string: "; cin >> input_1; cout << "Please enter your second string: "; cin >> input_2; } void CompareInput(char comp_1[], char comp_2[]) { int i = 0; do { if (comp_1[i] == comp_2[i]) { if (i < CHAR_LIMIT-1) { i++; } else if (i == CHAR_LIMIT-1) { cout << "Same."; i++; } } else { cout << "Different."; i = 6; } } while (i < CHAR_LIMIT); } //void DispResult() //{ // //}