histogram of characters

Histogram of the frequencies of characters - C Program

Submitted by davidwachira on
A program written in C to print a histogram of the frequencies of different characters (printable) in its input as horizontal bars #include /* C Standard Input and Output Library*/ /*Variable declarations*/ char string_of_characters[200]; int character_frequency_counter; int counter; int print_histogram_counter; int output_counter; char frequency_array[26][2]={'a',0,'b',0,'c',0,'d',0,'e',0,'f',0