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
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
Get step-by-step solutions from verified subject matter experts
