Can anyone help me with this project, I cannot figure it out.
Enter characters one by one until a predetermined “sentinel” or the maximum number of characters is entered. The maximum MUST be less than 96. The sentinel character can be any character other than an italic alpha or, space or a numeral (for example a # (pound) sign might be used).
Keep a frequency count of each of the italic alphas (upper and lower are deemed to be identical). Also keep a frequency count of other characters entered.
Output a frequency count of each italic alpha, and the others.
Determine which italic alpha occurred most often.
Output the stream entered in uppercase transposed form [ A becomes B , B becomes C etc; Z becomes A ].
Do not use any library functions.
Reference:
ASCII character set (APPENDIX C)
Fact – characters are really small integers.
Strings are NULL Terminated.