Q5) (20) We a have a two-dimensional array of characters char b[m][n], with m rows and n columns that is already filled
Posted: Tue Jul 05, 2022 10:27 am
Q5) (20) We a have a two-dimensional array of characters char b[m][n], with m rows and n columns that is already filled with characters. (So do not write statements to fill the array with character values, as we assume the array already filled with values). Write a C++ statements that count how many times the word Hi appears in the array b For example, if we are given that array b[3][7] is filled as follows: C L H H 0 1 i L L M B P y L H e H I 1 Then, for this example, your statements should output that Hi appeared 4 times in the Note: Do not use C-string or any pre-defined functions to solve the problem (in fact not nee