How can I use ASCII to loop through an array and count the characters in that array? So I have an array of char (c string) called message that I need to loop through to count each occurrence of a letter or symbol using ASCII and then fill an array with the frequency of each occurrence. Not sure how to do that? I got somewhat of a start but I'm kind of lost on how to do it.
ASCII_SIZE is defined in a .h file that is an int of 128
MESSAGE_SIZE is defined in a .h file that is an int of 1000