Question: Debug and Fix #include #include using namespace std; void match(char *mystring); int length(char* mystring); int vowel(char* mystring); int Frequency(char* mystring); void PalidromeTest(char* mystring); void R(char

Debug and Fix #include #include using namespace std; void match(char *mystring); int length(char* mystring); int vowel(char* mystring); int Frequency(char* mystring); void PalidromeTest(char* mystring); void R(char *mystring); int main() { char mystring[100]; cout << "Enter" << endl; //cin >> mystring; cin.getline(mystring, 100);

int input; cout << "1.String match" << endl; cout << "2.string length" << endl; cout << "3.string reverse " << endl; cout << "4 vowels in the string" << endl; cout << "5.Palidrome Test" << endl; cout << "6. Frequency of character in your string" << endl; cout << "7. Combine two strings" << endl; cin >> input; switch (input) { case 1:match(mystring); break; } system("pause"); } void match(char *f) { }

int length(char *mystring) { }

void R(char *mystring) { }

int vowel(char* mystring) { }

void PalidromeTest(char* mystring) {

}

int Frequency(char* mystring) {

} void combine(char* mystring) { }

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!