Question: Using C++ Write a program to perform the following tasks. Define an array of characters of size 15. Read 15 characters from the user into
Using C++
Write a program to perform the following tasks. Define an array of characters of size 15. Read 15 characters from the user into the array. Next, read a search character from the user. The program should search for this character in the array. If found, report so, and also report the number times the search character occurs in the input array. Finally, the program should report what other character(s) in the input array occur(s) the same number of times as the search character. Suppose that your 15 character input is "aaaabbbbccccdef", and the search character is 'a'. Your program would state that 'a' is present in the input and that it occurs 4 times. It would also output stating that "The characters 'b' and 'c' occur the same number of times as that of 'at
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
